diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a3c96cc..a01eefc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,6 +78,11 @@ jobs: needs: build runs-on: ubuntu-latest steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: ${{ env.FETCH_DEPTH }} + - name: Create Release id: create_release uses: actions/create-release@v1 @@ -97,7 +102,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | for asset in core-to-core-latency-plus-*; do - gh release upload ${{ github.ref_name }} $asset + gh release upload ${{ github.ref_name }} $asset --clobber done publish-crates: