Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lablans committed Apr 11, 2024
1 parent b9e23d3 commit 67ab624
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ jobs:

- name: Download specific Build Artifact to artifacts/
if: ${{ inputs.artifact-name != '' && inputs.artifact-name != '*' }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact-name }}
path: artifacts

- name: Download all Build Artifacts to artifacts/
if: ${{ inputs.artifact-name == '*' }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts

Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
- name: "GHCR: Define Image Tags (commit-based only)"
id: docker-meta-ghcr-commit
# if: { ! env.ghcr }
if: ! env.ghcr
uses: docker/metadata-action@v5
with:
images: |
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:

- name: "Docker Hub: Generate Image Tags"
id: docker-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
if: env.dockerhub && github.event_name != 'pull_request'
with:
images: |
Expand Down

0 comments on commit 67ab624

Please sign in to comment.