Updated schedule through wake-controller #336
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: 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 |