Skip to content

Commit

Permalink
Add publish-docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skodapetr committed May 6, 2024
1 parent 1d34342 commit 4b3fedc
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: publish-docker
on:
push:
branches:
- 'master'
- 'develop'
- 'v2'
jobs:
publish-docker:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v3
with:
context: ./
file: ./Dockerfile
push: true
tags: ghcr.io/datagov-cz/data-validator:${{ github.ref_name }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 4b3fedc

Please sign in to comment.