Skip to content

Commit 282bf0d

Browse files
committed
Debug failed to verify attestation
1 parent 2346a22 commit 282bf0d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/dashboard.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
run: |
3636
sudo apt-get update
3737
sudo apt-get -y upgrade
38+
sudo ntpdate -u pool.ntp.org
3839
if: runner.os == 'Linux'
3940

4041
# Install module dependencies (from cpanfile or manually)
@@ -94,13 +95,11 @@ jobs:
9495
# ls -t coverage_history/*.json | tail -n +31 | xargs rm -f
9596
9697
- name: Commit coverage snapshot
97-
run: |
98-
git config user.name "GitHub Actions"
99-
git config user.email "github-actions@github.com"
100-
git add coverage_history/
101-
git commit -m "Add coverage snapshot for $TIMESTAMP ($SHA)" || echo "No changes to commit"
102-
git pull --rebase
103-
git push origin HEAD:${{ github.ref_name }}
98+
uses: EndBug/add-and-commit@v9
99+
with:
100+
author_name: GitHub Actions
101+
author_email: github-actions@github.com
102+
message: "Add coverage snapshot for ${{ steps.timestamp.outputs.date }} (${{ steps.sha.outputs.short }})"
104103

105104
# Deploy HTML report to GitHub Pages
106105
- name: Publish coverage report

0 commit comments

Comments
 (0)