Skip to content

Try with checkout

Try with checkout #7

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
- 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: commit-version-tag
- name: Push to main
run: git push origin --tags
# - name: Create release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# tag: ${{ GITHUB_REF_NAME }}
# run: |
# gh release create "$tag" \
# --repo="$GITHUB_REPOSITORY" \
# --title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
# --generate-notes