Skip to content

verification workaround #59

verification workaround

verification workaround #59

Workflow file for this run

name: Release
on:
pull_request:
types:
- closed
branches:
- Main
jobs:
release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Git User
run: |
git config --global user.name 'github-actions'
git config --global user.email 'github-actions@github.com'
- name: Get latest tag
id: get_tag
run: echo "::set-output name=tag::$(git tag | grep -v '\-rc$' | sort -r | head -n 1)"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_tag.outputs.tag }}
release_name: Release ${{ steps.get_tag.outputs.tag }}
draft: false