mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 15:46:35 +00:00
fix(ci): pass Axiom secrets to reusable build workflow
Secrets dont auto-propagate to reusable workflows. Added BF_AXIOM_KEY + BF_AXIOM_DATASET to both release.yml secrets block and build.yml workflow_call.secrets declaration. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
01d9098af2
commit
2592a18564
2 changed files with 6 additions and 0 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -42,6 +42,10 @@ on:
|
|||
required: false
|
||||
BF_RAUC_SIGNING_KEY:
|
||||
required: false
|
||||
BF_AXIOM_KEY:
|
||||
required: false
|
||||
BF_AXIOM_DATASET:
|
||||
required: false
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -140,3 +140,5 @@ jobs:
|
|||
BF_AUTOIMPORT_API_KEY: ${{ secrets.BF_AUTOIMPORT_API_KEY }}
|
||||
BF_RAUC_SIGNING_CERT: ${{ secrets.BF_RAUC_SIGNING_CERT }}
|
||||
BF_RAUC_SIGNING_KEY: ${{ secrets.BF_RAUC_SIGNING_KEY }}
|
||||
BF_AXIOM_KEY: ${{ secrets.BF_AXIOM_KEY }}
|
||||
BF_AXIOM_DATASET: ${{ secrets.BF_AXIOM_DATASET }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue