Try history #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
- uses: actions/checkout@v4 | ||
with fetch-depth: 0 | ||
- 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 --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 |