From a8f2155c52f2cbee15255fb6d36f1bfd54997eca Mon Sep 17 00:00:00 2001 From: tonyspumoni <94409037+tonyspumoni@users.noreply.github.com> Date: Fri, 18 Nov 2022 17:48:29 -0700 Subject: [PATCH] add update score to verifyBuild (#290) --- .github/workflows/VerifyBuild.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/VerifyBuild.yml b/.github/workflows/VerifyBuild.yml index df45326c..4065ae4b 100644 --- a/.github/workflows/VerifyBuild.yml +++ b/.github/workflows/VerifyBuild.yml @@ -51,6 +51,16 @@ jobs: - name: Verify Build run: if [[ $(sha1sum -c --quiet sha1/dkr.us_1.0.sha1) = "" ]]; then echo "Signature OK"; else echo "Failed"; exit 1; fi + - name: Update Score + run: ./update-score.sh + + - name: Commit Score Update + uses: test-room-7/action-update-file@v1 + with: + file-path: README.md + commit-msg: Update score + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Clean Build run: make clean