Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RSDK-9817] add required secrets during publish.yml call to canary_ota.yml #407

Merged
merged 3 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/canary_ota.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ on:
otaTag:
required: true
type: string
secrets:
ESP32_CANARY_ROBOT:
required: true
ESP32_CANARY_ROBOT_PART_ID:
required: true
ESP32_CANARY_API_KEY:
required: true
ESP32_CANARY_API_KEY_ID:
required: true
GCP_BUCKET_URL:
required: true
GCP_BUCKET_NAME:
required: true
CANARY_SLACKBOT_TOKEN:
required: true
MICRO_RDK_TEAM_CHANNEL_ID:
required: true
workflow_dispatch:
inputs:
otaTag:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,6 @@ jobs:
update-canary-ota-config:
uses: ./.github/workflows/canary_ota.yml
needs: [publish-release]
secrets: inherit
with:
otaTag: ${{ github.ref_name }}
Loading