test #1047
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: test | |
# Run on pull requests and on the master branch itself. | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
# Checkout the code. | |
- uses: actions/checkout@v2 | |
- name: build | |
run: | | |
docker compose run builder python3 fix-uppercase-lowercase.py | |
docker compose run builder make html latexpdf | |
docker compose run builder cp build/latex/3di.pdf build/html | |
zip -r threedi-docs.zip build/html | |
- name: Publish tags on https://docs.3di.live | |
if: startsWith(github.event.ref, 'refs/tags') | |
run: bash upload-artifact.sh production | |
env: | |
ARTIFACTS_KEY_PRODUCTION: ${{ secrets.ARTIFACTS_KEY_PRODUCTION }} | |
- name: Publish master to https://docs.staging.3di.live | |
if: github.event.ref == 'refs/heads/master' | |
run: bash upload-artifact.sh staging | |
env: | |
ARTIFACTS_KEY_STAGING: ${{ secrets.ARTIFACTS_KEY_STAGING }} |