Skip to content

Build and Deploy static content to Pages #727

Build and Deploy static content to Pages

Build and Deploy static content to Pages #727

Workflow file for this run

name: Build and Deploy static content to Pages
on:
push:
branches: ["master"]
schedule:
- cron: '0 */6 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.19'
- run: make
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: 'public'
- uses: actions/deploy-pages@v1
id: deployment