1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Release 6.1.7 (#6365)

* Release 6.1.7

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

* Testing pull_request:closed workflow (#6362)

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

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

* Different testing code (#6363)

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

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

* Add complete debug to release workflow for testing (#6364)

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:
Sebastian Malton 2022-10-07 11:25:50 -04:00 committed by GitHub
parent a1e129da11
commit 0a2387e7cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 18 deletions

View File

@ -6,22 +6,28 @@ on:
jobs: jobs:
release: release:
name: Release name: Release
if: ${{ 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')) }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Release from lens - name: Print event
uses: actions/checkout@v2 run: |
with: echo "merged=${{ github.event.pull_request.merged }}"
fetch-depth: 0 echo "ref=${{ github.event.pull_request.base.ref }}"
- uses: butlerlogic/action-autotag@stable echo "is_release=${{ contains(github.event.pull_request.labels.*.name, 'release') }}"
id: tagger 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')) }}"
with: exit 1
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # - name: Checkout Release from lens
tag_prefix: "v" # uses: actions/checkout@v2
- uses: ncipollo/release-action@v1 # with:
if: ${{ needs.tag.outputs.tagname != '' }} # fetch-depth: 0
with: # - uses: butlerlogic/action-autotag@stable
name: v${{ steps.open-lens-version.outputs.VERSION }} # id: tagger
commit: master # with:
tag: v${{ steps.open-lens-version.outputs.VERSION }} # GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
body: ${{ github.event.pull_request.body }} # 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 }}

View File

@ -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.6", "version": "6.1.7",
"main": "static/build/main.js", "main": "static/build/main.js",
"copyright": "© 2022 OpenLens Authors", "copyright": "© 2022 OpenLens Authors",
"license": "MIT", "license": "MIT",