Skip to content

push to branch

push to branch #15

Workflow file for this run

name: Release Version
# When merged into main
# Check if new test functions are added?
# if no new tests, then it is a patch
on:
push:
branches:
- charnley/release
jobs:
release:
name: Creating release
runs-on: "ubuntu-latest"
permissions:
contents: write
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup
run: |
git config --global user.name 'Github Actions'
git config --global user.email 'none@none.none'
- name:
run: echo $(git log -5 --oneline)
- name: Bump version
run: |
if test $(git diff HEAD^ HEAD tests | grep -q "+def")
then
make bump-version-minor
else
make bump-version-patch
fi
- name: Commit version
run: make commit-version-tag
- name: Push to main
run: git push origin $(git rev-parse --abbrev-ref HEAD) --tags
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: v$( make version )
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
--generate-notes