Skip to content

Commit

Permalink
Merge pull request #115 from cubing/lgarron/github-release
Browse files Browse the repository at this point in the history
Add an action to release pushed tags as GitHub releases.
  • Loading branch information
lgarron committed Oct 30, 2023
2 parents 426bfe8 + 721fa13 commit f034a11
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: GitHub Release

on:
push:
tags:
- v*

jobs:
Publish:
permissions:
contents: write
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Calculate release name
run: |
GITHUB_REF=${{ github.ref }}
RELEASE_NAME=${GITHUB_REF#"refs/tags/"}
echo "RELEASE_NAME=${RELEASE_NAME}" >> $GITHUB_ENV
# We'd use `github.event.head_commit.message`, but that includes the first line of the message. So we check out the code.
- name: Check out code for release body calculation using `git` itself
uses: actions/checkout@v3
- name: Calculate release body
run: git log --format=%b -n 1 HEAD >> /tmp/body-path.txt
- name: Publish release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_NAME }}
body_path: /tmp/body-path.txt
draft: false
prerelease: false

0 comments on commit f034a11

Please sign in to comment.