Bump version 3.2.3 → 3.2.4 #1
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: Update GitHub pages | |
on: | |
push: | |
tags: | |
# Push events to semver tags | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
update-docs: | |
runs-on: ubuntu-22.04 | |
name: Update docs | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all tags; Required for doc versioning | |
- name: Update gh-pages | |
uses: ./.github/actions/update-docs | |
with: | |
username: ${{ secrets.GH_USERNAME }} | |
email: ${{ secrets.GH_EMAIL }} | |
token: ${{ secrets.GH_TOKEN }} | |
version: ${{ github.ref_name }} | |
release: true |