Skip to content

small cleanups

small cleanups #180

Workflow file for this run

name: Publish-Screenshots
on:
push:
branches: [ master ]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
generate-screenshots:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
- name: Build Docker images
run: make build
- name: Generate screenshots
run: make generate-screenshots
- name: Upload screenshots as a github-pages artifact
uses: actions/upload-pages-artifact@v1
with:
path: .automated-rendering/screenshot-capture/screenshots/
publish-screenshots:
needs: generate-screenshots
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1