Änderungsvorschläge von Raphael für Doku Autorentool-Lehrende (ohne d… #82
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: Build | |
on: | |
push: | |
branches-ignore: | |
- main | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Build Writerside docs using Docker | |
uses: JetBrains/writerside-github-action@v4 | |
with: | |
instance: ${{ vars.WRITERSIDE_WORKFLOW_INSTANCE }} | |
artifact: ${{ vars.WRITERSIDE_WORKFLOW_ARTIFACT }} | |
docker-version: ${{ vars.WRITERSIDE_WORKFLOW_DOCKER_VERSION }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs | |
path: | | |
artifacts/${{ vars.WRITERSIDE_WORKFLOW_ARTIFACT }} | |
retention-days: 7 |