mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix always releasing master as NPM package (#6763)
Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
83d2b12cca
commit
15930d910f
10
.github/workflows/publish-release-npm.yml
vendored
10
.github/workflows/publish-release-npm.yml
vendored
@ -1,7 +1,16 @@
|
||||
name: Publish NPM Package Release
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
version:
|
||||
required: true
|
||||
type: string
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
required: true
|
||||
type: string
|
||||
description: The version to release manually
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish NPM Package Release
|
||||
@ -14,6 +23,7 @@ jobs:
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: ${{ inputs.version }}
|
||||
|
||||
- name: Using Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
|
||||
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@ -11,6 +11,8 @@ jobs:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release') }}
|
||||
outputs:
|
||||
version: ${{ steps.tagger.outputs.tagname }}
|
||||
steps:
|
||||
- name: Checkout Release from lens
|
||||
uses: actions/checkout@v3
|
||||
@ -31,3 +33,6 @@ jobs:
|
||||
publish-npm:
|
||||
uses: ./.github/workflows/publish-release-npm.yml
|
||||
needs: release
|
||||
if: ${{ jobs.release.outputs.version != '' }}
|
||||
with:
|
||||
version: ${{ jobs.release.outputs.version }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user