Skip to content

Commit

Permalink
Update ci.yaml
Browse files Browse the repository at this point in the history
Fixing env variable scope issue hopefully
  • Loading branch information
TakeshiKovacs authored Nov 21, 2024
1 parent 7c09024 commit ea7a48c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:

- name: Set environment variables
run: |
echo "REPO_OWNER=$(echo '${{ github.repository_owner }}' | awk '{print tolower($0)}')" >> $GITHUB_ENV
REPO_OWNER=$(echo '${{ github.repository_owner }}' | awk '{print tolower($0)}')
echo "REPO_OWNER=$REPO_OWNER" >> $GITHUB_ENV
echo "REGISTRY=ghcr.io/$REPO_OWNER" >> $GITHUB_ENV
- name: Log in to GitHub Container Registry
Expand Down

0 comments on commit ea7a48c

Please sign in to comment.