diff --git a/.forgejo/workflows/build-alpine.yml b/.forgejo/workflows/build-alpine.yml new file mode 100644 index 00000000..10e2261c --- /dev/null +++ b/.forgejo/workflows/build-alpine.yml @@ -0,0 +1,23 @@ +on: + - workflow-dispatch + - push + +jobs: + build: + runs-on: ubuntu-latest + container: + image: alpine:edge + + steps: + - name: set up dependencied + run: | + apk update + apk upgrade + apk add nodejs git alpine-sdk + - uses: actions/checkout@v4 + # - uses: https://code.forgejo.org/actions/checkout + + - name: ls + run: ls . * + +# vim: shiftwidth=2