mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Release 6.1.9 (#6371)
* Release 6.1.9 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add logging for what would be a release PR merge (#6368) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Check if operator in release PR is correct (#6369) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix filtering on the release workflow (#6370) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
5d7b3ee4bb
commit
40bb975531
45
.github/workflows/release.yml
vendored
45
.github/workflows/release.yml
vendored
@ -3,33 +3,28 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
- closed
|
- closed
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- release/v*.*
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'release') }}
|
||||||
steps:
|
steps:
|
||||||
- name: Print event
|
- name: Checkout Release from lens
|
||||||
run: |
|
uses: actions/checkout@v2
|
||||||
echo "merged=${{ github.event.pull_request.merged }}"
|
with:
|
||||||
echo "ref=${{ github.event.pull_request.base.ref }}"
|
fetch-depth: 0
|
||||||
echo "targets_master=${{ github.event.pull_request.base.ref == 'master' }}"
|
- uses: butlerlogic/action-autotag@stable
|
||||||
echo "targets_release_branch=${{ startsWith(github.event.pull_request.base.ref, 'release/v') }}"
|
id: tagger
|
||||||
echo "is_release=${{ contains(github.event.pull_request.labels.*.name, 'release') }}"
|
with:
|
||||||
echo "should_continue=${{ github.event.pull_request.merged == 'true' && contains(github.event.pull_request.labels.*.name, 'release') && (github.event.pull_request.base.ref == 'master' || startsWith(github.event.pull_request.base.ref, 'release/v')) }}"
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
exit 1
|
tag_prefix: "v"
|
||||||
# - name: Checkout Release from lens
|
- uses: ncipollo/release-action@v1
|
||||||
# uses: actions/checkout@v2
|
if: ${{ needs.tag.outputs.tagname != '' }}
|
||||||
# with:
|
with:
|
||||||
# fetch-depth: 0
|
name: v${{ steps.open-lens-version.outputs.VERSION }}
|
||||||
# - uses: butlerlogic/action-autotag@stable
|
commit: master
|
||||||
# id: tagger
|
tag: v${{ steps.open-lens-version.outputs.VERSION }}
|
||||||
# with:
|
body: ${{ github.event.pull_request.body }}
|
||||||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
# tag_prefix: "v"
|
|
||||||
# - uses: ncipollo/release-action@v1
|
|
||||||
# if: ${{ needs.tag.outputs.tagname != '' }}
|
|
||||||
# with:
|
|
||||||
# name: v${{ steps.open-lens-version.outputs.VERSION }}
|
|
||||||
# commit: master
|
|
||||||
# tag: v${{ steps.open-lens-version.outputs.VERSION }}
|
|
||||||
# body: ${{ github.event.pull_request.body }}
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"productName": "OpenLens",
|
"productName": "OpenLens",
|
||||||
"description": "OpenLens - Open Source IDE for Kubernetes",
|
"description": "OpenLens - Open Source IDE for Kubernetes",
|
||||||
"homepage": "https://github.com/lensapp/lens",
|
"homepage": "https://github.com/lensapp/lens",
|
||||||
"version": "6.1.8",
|
"version": "6.1.9",
|
||||||
"main": "static/build/main.js",
|
"main": "static/build/main.js",
|
||||||
"copyright": "© 2022 OpenLens Authors",
|
"copyright": "© 2022 OpenLens Authors",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user