Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Knifa committed Nov 29, 2024
1 parent c5deace commit 5443ff1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Repository name as lowercase
id: repo
run: echo "::set-output name=name::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')"
- name: Get image base name
id: image-base-name
run: |
REPO_LOWERCASE="${{ github.repository }} | tr '[:upper:]' '[:lower:]')"
echo "value=ghcr.io/${REPO_LOWERCASE}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
Expand All @@ -36,7 +38,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ steps.repo.outputs.name }}/test
images: ghcr.io/${{ steps.repo.outputs.name }}
tags: |
type=edge
type=semver,pattern={{version}}
Expand Down

0 comments on commit 5443ff1

Please sign in to comment.