From a962fd3c5502a07ddedf50986ad54659332543a0 Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Fri, 20 Sep 2024 16:41:51 -0500 Subject: [PATCH] build: update release with newer actions --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18f3850..de4bc49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,9 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Check run: make check @@ -78,7 +80,6 @@ jobs: uses: actions/download-artifact@v4 with: name: release_url - path: release_url - name: Distribute run: make dist @@ -87,7 +88,7 @@ jobs: id: get_release_info shell: bash run: | - value=`cat release_url/release_url.txt` + value=`cat release_url.txt` echo ::set-output name=upload_url::$value env: TAG_REF_NAME: ${{ github.ref }}