Merge branch 'main' into new-versioning-03

This commit is contained in:
Edward Firmo
2024-12-21 17:49:58 +01:00
committed by GitHub
4 changed files with 61 additions and 36 deletions

View File

@@ -28,12 +28,18 @@ jobs:
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
- name: Create Temporary Branch
run: |
TEMP_BRANCH="temp/version-bump-$(uuidgen)"
echo "TEMP_BRANCH=${TEMP_BRANCH}" >> "${GITHUB_ENV}"
git checkout -b "${TEMP_BRANCH}"
- name: Bump Version
run: |
chmod +x "./versioning/bump_version.sh"
"./versioning/bump_version.sh"
- name: Push Changes and Tags
- name: Push Changes to Temporary Branch
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: |