Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
derklaro committed Sep 4, 2024
1 parent 245b102 commit 7367453
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ jobs:
cp target/${{ matrix.platform.target }}/release/vault artifact/vault_${{ matrix.platform.osn }}_${{ matrix.platform.arch }}
- name: Prepare output artifact for next step
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
name: vault-${{ env.RELEASE_VERSION }}-${{ matrix.platform.target }}
path: artifact/vault-${{ env.RELEASE_VERSION }}-${{ matrix.platform.target }}

- name: Prepare output artifact for next step
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
name: vault_${{ matrix.platform.osn }}_${{ matrix.platform.arch }}
Expand All @@ -79,12 +79,12 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: binaries

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
fail_on_unmatched_files: true
files: |
Expand Down

0 comments on commit 7367453

Please sign in to comment.