Skip to content

Commit

Permalink
use lowercase repo owner
Browse files Browse the repository at this point in the history
Signed-off-by: Guido <[email protected]>
  • Loading branch information
mgmgwi committed May 21, 2021
1 parent 4ccd3c2 commit 56a0e4e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v2

- name: Lowercase repo owner
id: lowercase_repo_owner
uses: ASzc/change-string-case-action@v1
with:
string: ${{ github.repository_owner }}

- name: Prepare labels and tags
id: prep
run: |
DOCKER_IMAGE=ghcr.io/idunion/von-network
DOCKER_IMAGE=ghcr.io/${{ steps.lowercase_repo_owner.outputs.lowercase }}/von-network
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/}
Expand Down

0 comments on commit 56a0e4e

Please sign in to comment.