bump GHC to match nix’s #60
Workflow file for this run
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: release | |
# until we do releases, deploy docs with every commit to main | |
on: | |
push: | |
branch: | |
- main | |
# tags: | |
# - '*' | |
jobs: | |
generate-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: "install vessel" | |
run: | | |
mkdir /home/runner/bin | |
echo "/home/runner/bin" >> $GITHUB_PATH | |
wget --output-document /home/runner/bin/vessel https://github.com/dfinity/vessel/releases/download/v0.7.0/vessel-linux64 | |
chmod +x /home/runner/bin/vessel | |
- name: "docs" | |
run: make docs | |
- name: Upload docs | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: docs/ # The folder the action should deploy. |