Skip to content

Commit

Permalink
fix: fix repo lowercase conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
hbruch committed Dec 29, 2023
1 parent bebc396 commit b88406a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
id: lower-repo
shell: pwsh
run: |
echo "repository=$($env:GITHUB_REPOSITORY.ToLowerInvariant())" >> $GITHUB_OUTPUT
echo "repository=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
- name: build and push Docker image
uses: docker/build-push-action@v4
Expand Down

0 comments on commit b88406a

Please sign in to comment.