From 3a50c90a741e9fbf04e0c9ab4920a451402cd546 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 30 Dec 2023 21:24:06 -0800 Subject: [PATCH] Fix release job --- .github/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1d1f1c3..7ed2a68 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 with: ref: ${{ github.ref }} - run: git checkout "${GITHUB_REF:11}" @@ -32,6 +32,9 @@ jobs: needs: build if: github.ref == 'refs/heads/master' steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} - uses: actions/cache@v3 with: path: artifacts