Skip to content

Commit

Permalink
Merge pull request #1977 from AntelopeIO/lower_org_release_yaml_main
Browse files Browse the repository at this point in the history
[5.0 -> main] fix `experimental-binaries` creation on releases: lowercase org name in image tag
  • Loading branch information
spoonincode authored Dec 13, 2023
2 parents e797f9d + 815f898 commit 1335108
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
registry: ghcr.io
username: ${{github.repository_owner}}
password: ${{github.token}}
- run: echo "REPOSITORY_OWNER_LOWER=${GITHUB_REPOSITORY_OWNER,,}" >> "${GITHUB_ENV}"
- name: Build and push experimental-binaries
uses: docker/build-push-action@v3
with:
push: true
tags: ghcr.io/${{github.repository_owner}}/experimental-binaries:${{github.ref_name}}
tags: ghcr.io/${{env.REPOSITORY_OWNER_LOWER}}/experimental-binaries:${{github.ref_name}}
context: .

0 comments on commit 1335108

Please sign in to comment.