Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasdewally committed Nov 3, 2023
1 parent 691cbf8 commit f21b8e3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,37 @@ jobs:
echo "| Conjure-Oxide | ![](${CONJURE_OXIDE_LATEST}/badges/flat.svg) | [Full Report](${CONJURE_OXIDE_LATEST}) | " >> $GITHUB_STEP_SUMMARY
echo "| Minion | ![](${MINION_LATEST}/badges/flat.svg) | [Full Report](${MINION_LATEST}) | " >> $GITHUB_STEP_SUMMARY
echo "| Chuffed | ![](${CHUFFED_LATEST}/badges/flat.svg) | [Full Report](${CHUFFED_LATEST}) | " >> $GITHUB_STEP_SUMMARY
indexes:
needs: coverage
name: "Regenerate indexes for coverage"
runs-on: ubuntu-latest
steps:
- name: Checkout the pages repository
uses: actions/checkout@v2
with:
ref: "gh-pages"
- name: "Install statik"
run: |
wget "https://github.com/lucat1/statik/archive/refs/tags/v0.7.0.tar.gz"
tar xfz v0.7.0.tar.gz
cd statik-0.7.0
go build
- name: "Generate index for /coverage"
run: |
./statik-0.7.0/statik coverage
- name: "Generate index for /coverage/sha"
run: |
./statik-0.7.0/statik coverage/${{ github.sha }}
- name: "Generate index for /coverage/latest"
run: |
./statik-0.7.0/statik coverage/latest
- run: tree





0 comments on commit f21b8e3

Please sign in to comment.