Skip to content
Merged
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
chore: pass secrets to nested publish workflows
  • Loading branch information
nazarhussain committed Dec 10, 2025
commit a8bc70f0a1472424727aab8b9ae4d2503a51d7ad
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
!contains(github.ref_name, '-alpha')
)
uses: ./.github/workflows/publish-stable.yml
secrets: inherit

publish-rc:
if: |
Expand All @@ -34,11 +35,14 @@ jobs:
contains(github.ref_name, '-alpha')
)
uses: ./.github/workflows/publish-rc.yml
secrets: inherit

# publish-nextfork:
# if: github.ref == 'refs/heads/peerDAS'
# uses: ./.github/workflows/publish-next-fork.yml
# secrets: inherit

publish-dev:
if: github.ref == 'refs/heads/unstable'
uses: ./.github/workflows/publish-dev.yml
secrets: inherit
Loading