diff --git a/.github/workflows/image-push-master.yml b/.github/workflows/image-push-master.yml new file mode 100644 index 0000000..23ffbe7 --- /dev/null +++ b/.github/workflows/image-push-master.yml @@ -0,0 +1,33 @@ +name: "Push images on merge to master" +on: + push: + branches: + - master +jobs: + build-and-push-image: + runs-on: ubuntu-20.04 + env: + IMAGE_NAME: ghcr.io/${{ github.repository }} + steps: + - name: Check out the repo + uses: actions/checkout@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to Docker + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push container image + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: | + ${{ env.IMAGE_NAME }}:latest + ${{ env.IMAGE_NAME }}:${{ github.sha }} + file: ./Dockerfile diff --git a/.github/workflows/image-push-release.yml b/.github/workflows/image-push-release.yml new file mode 100644 index 0000000..ebab6a3 --- /dev/null +++ b/.github/workflows/image-push-release.yml @@ -0,0 +1,39 @@ +name: "Push images on release" +on: + push: + tags: + - v* +jobs: + build-and-push-image: + runs-on: ubuntu-20.04 + env: + IMAGE_NAME: ghcr.io/${{ github.repository }} + steps: + - name: Check out the repo + uses: actions/checkout@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to Docker + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker meta + id: docker_meta + uses: crazy-max/ghaction-docker-meta@v1 + with: + images: ${{ env.IMAGE_NAME }} + tag-latest: false + + - name: Build and push container image + uses: docker/build-push-action@v2 + with: + context: . + push: true + tags: | + ${{ steps.docker_meta.outputs.tags }} + file: ./Dockerfile