20 lines
382 B
YAML
20 lines
382 B
YAML
on:
|
|
- workflow-dispatch
|
|
- push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: alpine:edge
|
|
|
|
steps:
|
|
- name: set up node (for checkout)
|
|
run: apk add node
|
|
- uses: actions/checkout@v4
|
|
# - uses: https://code.forgejo.org/actions/checkout
|
|
|
|
- name: setup alpine-sdk
|
|
run: apk add alpine-sdk
|
|
|
|
# vim: shiftwidth=2
|