Skip to content

Commit

Permalink
fix(ci): reference the created tag for release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
DevYukine committed Jan 15, 2024
1 parent f3ed964 commit f9e1d91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Checkout Source code
uses: actions/checkout@v4
with:
tag: ${{ needs.changelog.outputs.tag }}
ref: ${{ needs.changelog.outputs.tag }}
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Checkout Source code
uses: actions/checkout@v4
with:
tag: ${{ needs.changelog.outputs.tag }}
ref: ${{ needs.changelog.outputs.tag }}
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Checkout Source code
uses: actions/checkout@v4
with:
tag: ${{ needs.changelog.outputs.tag }}
ref: ${{ needs.changelog.outputs.tag }}
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
Expand Down

0 comments on commit f9e1d91

Please sign in to comment.