Skip to content

Commit

Permalink
💚 fix publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ad2ien committed Sep 5, 2023
1 parent 7f92eef commit cb00b23
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
test:
uses: ./.github/workflows/test.yml

build:
uses: ./.github/workflows/build.yml
docker-build:
uses: ./.github/workflows/docker-build.yml

publish-docker-images:
needs:
Expand All @@ -33,6 +33,7 @@ jobs:
uses: FranzDiebold/[email protected]

- name: Extract metadata (tags, labels) for Docker
id: docker_metadata
uses: docker/metadata-action@v4
with:
images: ${{ secrets.DOCKER_HUB_USERNAME }}/eimis-synapse-tools
Expand All @@ -48,7 +49,7 @@ jobs:
- name: Login to Docker registry
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
username: ${{ vars.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and publish image(s)
Expand Down

0 comments on commit cb00b23

Please sign in to comment.