Skip to content

Commit

Permalink
fix: repo owner in lowercase #29
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravio1i authored Nov 13, 2021
2 parents b9b9806 + 42e3903 commit f3e5b1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ jobs:
git config user.email github-actions@github.com
poetry run semantic-release publish
echo "RELEASE_VERSION=$(poetry version -s)" >> $GITHUB_ENV
echo "REPO_OWNER=${OWNER,,}" >>${GITHUB_ENV}
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
OWNER: '${{ github.repository_owner }}'

- name: Set up Docker Buildx
id: buildx
Expand All @@ -90,6 +92,6 @@ jobs:
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE_NAME }}
ghcr.io/${{ env.REPO_OWNER }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE_NAME }}
secrets: |
GIT_AUTH_TOKEN=${{ github.token }}

0 comments on commit f3e5b1f

Please sign in to comment.