github: deploy also on tags push #39
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
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
jobs: | |
configure: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.version-matrix.outputs.matrix }} | |
latest: ${{ steps.latest.outputs.latest }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git fetch --tags origin | |
- id: version-matrix | |
run: echo "matrix=$(.github/config.py)" | tee $GITHUB_OUTPUT | |
- id: latest | |
run: echo "latest=$(.github/config.py --latest)" | tee $GITHUB_OUTPUT | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- run: pip install sphinx | |
- run: sphinx-build docs _build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: docs-artifact | |
path: _build | |
if-no-files-found: error | |
build-app: | |
runs-on: ubuntu-latest | |
needs: configure | |
strategy: | |
matrix: ${{ fromJson(needs.configure.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ matrix.ref }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- run: npm install | |
- run: npm run build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.name }} | |
path: dist | |
if-no-files-found: error | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [configure, build-docs, build-app] | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{steps.deployment.outputs.page_url}} | |
steps: | |
- uses: actions/download-artifact@v4 | |
- run: find | |
- run: mv docs-artifact/* . | |
- run: | | |
latest=${{ needs.configure.outputs.latest }} | |
echo "<meta http-equiv=\"refresh\" content=\"0; url=$latest\" />" > latest.html | |
- run: | | |
mkdir stable | |
echo "<meta http-equiv=\"refresh\" content=\"0; url=../v0.1.0\" />" > stable/index.html | |
- run: find | |
- uses: actions/configure-pages@v1 | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: . | |
- id: deployment | |
uses: actions/deploy-pages@v1 |