From f3ac144cc416b9fcb7a0c1ee52fc6c22a80ac3e3 Mon Sep 17 00:00:00 2001 From: magmaus3 Date: Mon, 5 May 2025 16:33:46 +0200 Subject: [PATCH] feat: add alpine ci --- .forgejo/workflows/build-alpine.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/build-alpine.yml diff --git a/.forgejo/workflows/build-alpine.yml b/.forgejo/workflows/build-alpine.yml new file mode 100644 index 00000000..a2668157 --- /dev/null +++ b/.forgejo/workflows/build-alpine.yml @@ -0,0 +1,20 @@ +on: + - workflow-dispatch + - push + +jobs: + build: + runs-on: ubuntu-latest + container: + image: alpine:edge + + steps: + - name: set up node (for checkout) + run: apk add nodejs + - uses: actions/checkout@v4 + # - uses: https://code.forgejo.org/actions/checkout + + - name: setup alpine-sdk + run: apk add alpine-sdk + +# vim: shiftwidth=2