1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/.github/workflows/release.yml
Sebastian Malton 2ff0e60f2a
Testing pull_request:closed workflow (#6362)
Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2022-10-07 11:09:47 -04:00

31 lines
836 B
YAML

name: Release Open Lens
on:
pull_request:
types:
- closed
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Print event
run: |
echo ${{ github.event.pull_request }}
exit 1
- name: Checkout Release from lens
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: butlerlogic/action-autotag@stable
id: tagger
with:
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 }}