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 7483020 commit c5deace
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
on:
push:
branches:
- main
- docker-test
tags:
- v*

Expand All @@ -15,6 +15,11 @@ jobs:
build:
runs-on: ubuntu-latest
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: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
Expand All @@ -31,7 +36,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
images: ghcr.io/${{ steps.repo.outputs.name }}/test
tags: |
type=edge
type=semver,pattern={{version}}
Expand Down

0 comments on commit c5deace

Please sign in to comment.