2022-11-10 20:20:40 +01:00
|
|
|
pipeline:
|
2022-11-10 20:25:21 +01:00
|
|
|
build:
|
|
|
|
image: node:latest
|
|
|
|
commands:
|
2022-11-17 07:46:22 +01:00
|
|
|
- npm install -D @11ty/eleventy
|
2022-11-10 20:25:21 +01:00
|
|
|
- npx @11ty/eleventy --input=. --output=public
|
|
|
|
|
2022-11-10 20:20:40 +01:00
|
|
|
deploy:
|
2023-02-25 12:43:43 +01:00
|
|
|
image: node:18
|
2022-11-10 20:20:40 +01:00
|
|
|
secrets:
|
|
|
|
- SWA_CLI_DEPLOYMENT_TOKEN
|
|
|
|
commands:
|
2022-11-11 12:00:06 +01:00
|
|
|
- npm install -D @azure/static-web-apps-cli
|
2022-11-17 07:46:22 +01:00
|
|
|
- npx @azure/static-web-apps-cli deploy ./public --env Production
|
2022-11-10 20:20:40 +01:00
|
|
|
|
|
|
|
branches: main
|