maybe fix workflow #6
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: Build HTML File | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
upload-validation-dashboard: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dhall-lang/setup-dhall@v4 | |
with: | |
version: '1.41.0' | |
- name: build html file | |
run: | | |
sudo apt install -y dhall | |
mkdir html | |
dhall text <generate.dhall >html/index.html | |
cp axist.css html/ | |
- name: Step 3 - Use the Upload Artifact GitHub Action | |
uses: actions/upload-artifact@v2 | |
with: | |
name: validation-overview | |
path: html |