diff --git a/.github/workflows/create-docs.yml b/.github/workflows/create-docs.yml index b2e417f6..15ba3a9f 100644 --- a/.github/workflows/create-docs.yml +++ b/.github/workflows/create-docs.yml @@ -9,23 +9,23 @@ jobs: container: image: fernandocorrea/red-tester-no-run steps: - - uses: actions/checkout@v2 - - name: Create local changes - run: | - raku tools/make-docs.raku - # - name: Run test coverage - # run: | - # racoco --fail-level=$(cat .coverage) --exec='zef test -v .' --html | raku -ne 'say $.floor if /^ "Coverage:" <.ws> $=[\d+\.\d+] "%" $/' > .coverage - # rm -rf docs/coverage - # mkdir -p docs/coverage/ - # mv .racoco/report.html .racoco/report-data docs/coverage/ - - name: Commit files - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git add . - git commit -m "Create docs" -a || true - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/checkout@v2 + - name: Create local changes + run: | + raku tools/make-docs.raku + - name: Run test coverage + run: | + racoco --fail-level=$(cat .coverage) --exec='zef test -v .' --html | raku -ne 'say $.floor if /^ "Coverage:" <.ws> $=[\d+\.\d+] "%" $/' > .coverage + rm -rf docs/coverage + mkdir -p docs/coverage/ + mv .racoco/report.html .racoco/report-data docs/coverage/ + - name: Commit files + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git add . + git commit -m "Create docs" -a || true + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }}