Skip to content

Commit

Permalink
Merge pull request #9 from sarnold/release-wkflw
Browse files Browse the repository at this point in the history
Teensy bit more automation
  • Loading branch information
sarnold authored Apr 15, 2022
2 parents 168f690 + 2d6c209 commit 304b05f
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Release

on:
push:
# release on tag push
tags:
- '*'

jobs:
gitchangelog_test:

strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]

runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash

name: Test changelog
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Get version
id: get_version
run: |
echo "VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
echo ${{ env.VERSION }}
- name: gitchangelog action step (debug)
uses: ./ # Uses an action in the root directory
with:
github_token: ${{ secrets.GITHUB_TOKEN}}

- name: Display changes file
run: cat CHANGES.md

- name: Test changes file
run: |
export VERSION=${{ env.VERSION }}
export TITLE_VERSION=$(cat CHANGES.md | head -n1 | cut -f2 -d" ")
if [[ -z $VERSION ]]; then
[[ "${TITLE_VERSION}" == "(unreleased)" ]] || exit 1
else
[[ "${TITLE_VERSION}" == "${VERSION}" ]] || exit 1
fi
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
name: Release v${{ env.VERSION }}
body_path: CHANGES.md
draft: false
prerelease: false

0 comments on commit 304b05f

Please sign in to comment.