1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 08:19:35 +01:00

Maybe this helps

This commit is contained in:
Graham Christensen 2025-07-11 20:26:32 -04:00
parent 37071b2d2d
commit b96c3e4657
2 changed files with 4 additions and 6 deletions

View file

@ -33,14 +33,11 @@ on:
required: false
default: false
type: boolean
secrets:
manual_netlify_auth_token:
required: false
default: ""
type: string
manual_netlify_site_id:
required: false
default: ""
type: string
jobs:
build:
@ -205,8 +202,8 @@ jobs:
enable-commit-status: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ inputs.manual_netlify_auth_token }}
NETLIFY_SITE_ID: ${{ inputs.manual_netlify_site_id }}
NETLIFY_AUTH_TOKEN: ${{ secrets.manual_netlify_auth_token }}
NETLIFY_SITE_ID: ${{ secrets.manual_netlify_site_id }}
success:
needs:

View file

@ -42,6 +42,7 @@ jobs:
run_vm_tests: true
run_regression_tests: true
publish_manual: true
secrets:
manual_netlify_auth_token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
manual_netlify_site_id: ${{ secrets.NETLIFY_SITE_ID }}