Skip to content

Commit

Permalink
Auto-update version number (#1836)
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolay authored Sep 26, 2024
1 parent 0707b6a commit 0d23bcc
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
repository_dispatch:
types: [ deploy-to-pages ]

jobs:
deploy:
Expand Down
53 changes: 53 additions & 0 deletions .github/workflows/updateVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Update WasabiDoc Version

on:
repository_dispatch:
types: [update-version]

jobs:
update-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Update config.ts
run: |
NEW_VERSION="${{ github.event.client_payload.new_version }}"
echo "Updating to version: $NEW_VERSION"
sed -i "s/currentVersion: '[^']*'/currentVersion: '$NEW_VERSION'/" docs/.vuepress/config.ts
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git checkout -b update-version-branch
git add docs/.vuepress/config.ts
git commit -m "Update version to ${{ github.event.client_payload.new_version }}"
git push -f --set-upstream origin update-version-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install GitHub CLI
run: sudo apt-get install gh

- name: Create Pull Request
run: |
gh pr create --base master --head update-version-branch --title "Update version to ${{ github.event.client_payload.new_version }}" --body "Auto-update version to ${{ github.event.client_payload.new_version }}."
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Merge Pull Request with Admin Privileges
run: |
gh pr merge update-version-branch --admin --squash --delete-branch
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Trigger Deployment
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/dispatches \
-d '{"event_type":"deploy-to-pages"}'

0 comments on commit 0d23bcc

Please sign in to comment.