Skip to content

Commit

Permalink
ADD checkout phrase for release action
Browse files Browse the repository at this point in the history
  • Loading branch information
karminski committed Oct 5, 2024
1 parent 639fbaf commit 4821f42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 4821f42

Please sign in to comment.