1
0
mirror of https://github.com/lensapp/lens.git synced 2024-11-09 12:20:46 +03:00

Fix workflows (#6927)

* Make sure secrets get passed through

Signed-off-by: Sebastian Malton <sebastian@malton.name>

* Fix bump master version

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-01-12 05:32:22 -08:00 committed by GitHub
parent 5a03c16958
commit 904200f72f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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 }}