mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-24 05:00:02 +01:00
16 lines
407 B
YAML
16 lines
407 B
YAML
pipeline:
|
|
build:
|
|
image: node:latest
|
|
commands:
|
|
- npx @11ty/eleventy --input=. --output=public
|
|
|
|
deploy:
|
|
image: node:latest
|
|
secrets:
|
|
- SWA_CLI_DEPLOYMENT_TOKEN
|
|
commands:
|
|
- npm install -D @azure/static-web-apps-cli
|
|
- npx @azure/static-web-apps-cli --version
|
|
- npx @azure/static-web-apps-cli deploy ./public --verbose=silly --env Production
|
|
|
|
branches: main
|