Merge pull request #95 from PasteBar/version-bump-a21feef38b85749e8dc… #26
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: Version Bump | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
version-bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install | |
- name: Check for changesets | |
id: check_changes | |
run: | | |
if [ -n "$(ls .changeset/*.md 2>/dev/null)" ]; then | |
echo "changes_detected=true" >> $GITHUB_OUTPUT | |
else | |
echo "changes_detected=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Create Pull Request | |
if: steps.check_changes.outputs.changes_detected == 'true' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
# Create a new branch | |
git checkout -b version-bump-${{ github.sha }} | |
# Run version bump | |
npm run version | |
# Commit changes | |
git add . | |
git commit -m "Version bump and changelog update" | |
# Push the branch | |
git push origin version-bump-${{ github.sha }} | |
# Create Pull Request | |
gh pr create --title "Version Bump and Changelog Update" --body "Automated version bump and changelog update" --base main --head version-bump-${{ github.sha }} | |
# test-tauri job remains commented out as in the previous version |