Skip to content

Commit

Permalink
chore: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Dec 4, 2022
1 parent 6b0c3a2 commit 12a7f0c
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,14 @@ on:
jobs:
release:
name: Release on GitHub
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Get release information
id: release_info
run: |
echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.release_info.outputs.TAG }}
name: ${{ steps.release_info.outputs.TAG }}
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: >
Learn more about this release from the [changelog](https://github.com/dessant/support-requests/blob/master/CHANGELOG.md#changelog).

0 comments on commit 12a7f0c

Please sign in to comment.