this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: woodpecker

+29
+29
.woodpecker.yml
··· 1 + when: 2 + event: push 3 + 4 + labels: 5 + platform: linux/amd64 6 + 7 + steps: 8 + production: 9 + image: node 10 + when: 11 + branch: main 12 + environment: 13 + VERCEL_TELEMETRY_DISABLED: "1" 14 + VERCEL_TOKEN: 15 + from_secret: vercel_token 16 + commands: 17 + - npx vercel --yes --token=$VERCEL_TOKEN --prod 18 + 19 + preview: 20 + image: node 21 + when: 22 + branch: 23 + exclude: [main] 24 + environment: 25 + VERCEL_TELEMETRY_DISABLED: "1" 26 + VERCEL_TOKEN: 27 + from_secret: vercel_token 28 + commands: 29 + - npx vercel --yes --token=$VERCEL_TOKEN