Skip to content

Commit

Permalink
fixed docker_deploy.yml workflow (#361)
Browse files Browse the repository at this point in the history
fixed Unrecognized named-value: 'env'. Located at position 1 within expression: env.DOCKERHUB_USERNAME
  • Loading branch information
LelouchFR authored Feb 27, 2025
1 parent 49478de commit 562c52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
DOCKERHUB_USERNAME: $(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/skill-icons:latest
DOCKERHUB_REPO: ${{ env.DOCKERHUB_USERNAME }}/skill-icons:latest
DOCKERHUB_REPO: $(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')/skill-icons:latest

jobs:
build_image:
Expand Down

0 comments on commit 562c52d

Please sign in to comment.