Support for updating collections via API and CLI (#70) #2
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: Website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
buildGitHubPages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Hugo | |
run: sudo apt install hugo | |
- name: Prepare and build website | |
run: | | |
hugo new site outclidocs | |
cd outclidocs | |
hugo mod init github.com/ioki-mobility/go-outline | |
cp ../cli/docs/website/config.yml config.yml | |
cp ../cli/docs/website/_index.md content/_index.md | |
mkdir content/docs | |
cp ../cli/docs/*.md content/docs | |
hugo build | |
- name: Upload artifact to GitHub pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./outclidocs/public | |
deployGitHubPages: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: buildGitHubPages | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |