Skip to content

Commit

Permalink
add dispatch for docker deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Apr 15, 2024
1 parent 863ab11 commit 36ea5ef
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Publish Docker images

on:
on:
workflow_dispatch:
release:
types: [published]

Expand Down Expand Up @@ -49,6 +50,13 @@ jobs:
node-version: 20
registry-url: "https://registry.npmjs.org"


# required for the cross-compilation, else it will error with `exec format error
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Install Sunodo and build
run: |
npm install -g @sunodo/cli
Expand Down

0 comments on commit 36ea5ef

Please sign in to comment.