Skip to content

Update AdLer-Prjekt Glossareintrag with glossary entry 2.0 #19

Update AdLer-Prjekt Glossareintrag with glossary entry 2.0

Update AdLer-Prjekt Glossareintrag with glossary entry 2.0 #19

name: Build and publish main to Github Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
id-token: write
pages: write
jobs:
call-build:
uses: ProjektAdler/Documentation/.github/workflows/build.yml@main
secrets: inherit
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: call-build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: docs
- name: Unzip artifact
run: unzip -O UTF-8 -qq ${{ vars.WRITERSIDE_WORKFLOW_ARTIFACT }} -d dir
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: dir
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1