From 590e2e251f71ab659e111f27eacb598efca69d46 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 27 Mar 2023 14:48:12 -0400 Subject: [PATCH] Write rev before deploying wiki (#53) This writes the last commit SHA of the main repository before committing and deploying the changes to the wiki. --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de9b7bd..43b6f7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Write Rev + run: 'git log -1 --format="%H" > .github/wiki/Rev.md' - uses: ./ with: # For now, you'll need to manually specify a GitHub token until we