dblang/.woodpecker.yml
jusax23 37385589d6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
lots of changes
2023-01-29 22:11:24 +01:00

19 lines
No EOL
617 B
YAML

# .woodpecker.yml
platform: linux/arm64
pipeline:
build:
image: node:18-alpine
commands:
- apk add git zip tar
- npm install
- npm install git+https://jusax.de/git/jusax23/gitea-release.git
- mkdir build
- mkdir dblang
- mkdir upload
- npm run prepublish
- cp dist/* dblang
- zip -r upload/DBlang.zip dblang/*
- tar -czvf upload/DBlang.tar.gz dblang/*
- npx gitea-release "https://jusax.de/git/api/v1/" "$${GITEA_TOKEN}" "$${CI_REPO}" "$${CI_COMMIT_BRANCH}" "$${CI_COMMIT_TAG}" "upload" "$${CI_COMMIT_MESSAGE}"
secrets: [ gitea_token ]