From 904200f72fbe279e03628a0bc81220c98ad6158a Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 12 Jan 2023 05:32:22 -0800 Subject: [PATCH] Fix workflows (#6927) * Make sure secrets get passed through Signed-off-by: Sebastian Malton * Fix bump master version Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- .github/workflows/bump-master-version.yaml | 2 +- .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-master-version.yaml b/.github/workflows/bump-master-version.yaml index cd9fc33023..df6688d353 100644 --- a/.github/workflows/bump-master-version.yaml +++ b/.github/workflows/bump-master-version.yaml @@ -37,7 +37,7 @@ jobs: echo "status=create" >> $GITHUB_OUTPUT - uses: peter-evans/create-pull-request@v4 - if: ${{ steps.bump.outputs.status == "create" }} + if: ${{ steps.bump.outputs.status == 'create' }} with: add-paths: package.json commit-message: Update package.json version to next preminor because of recent release diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c5d84bf0e..4fc05cd5d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,5 +34,6 @@ jobs: uses: ./.github/workflows/publish-release-npm.yml needs: release if: ${{ needs.release.outputs.version != '' }} + secrets: inherit with: version: ${{ needs.release.outputs.version }}