Skip to content

Commit

Permalink
Create manual_build_arm64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Nov 13, 2023
1 parent 88b5040 commit 05234c1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/manual_build_arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: manual arm64 image build
on:
workflow_dispatch

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build latest image
run: |
docker buildx build --push --platform linux/arm64 --tag ghcr.io/${{ github.repository }}/valhalla:manually_triggered_build_arm64 .

0 comments on commit 05234c1

Please sign in to comment.