Skip to content

Commit

Permalink
Build multiple Docker images for git tags (#1991)
Browse files Browse the repository at this point in the history
Closes #70.
  • Loading branch information
AlekSi authored Feb 14, 2023
1 parent a3a5348 commit 12a702e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Initialize Docker Buildx builder
run: bin/task docker-init

- name: Extract Docker image name and tag
- name: Extract Docker image name and tags
id: extract
uses: FerretDB/github-actions/extract-docker-tag@main

Expand All @@ -101,8 +101,8 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Docker image ${{ steps.extract.outputs.ghcr }}
run: bin/task docker-push DOCKER_IMAGES=${{ steps.extract.outputs.ghcr }}
- name: Build Docker images ${{ steps.extract.outputs.ghcr_images }}
run: bin/task docker-push DOCKER_IMAGES=${{ steps.extract.outputs.ghcr_images }}

- name: Check dirty
run: |
Expand Down

0 comments on commit 12a702e

Please sign in to comment.