Skip to content

Commit

Permalink
ci(release): fix artifacts uploading name...
Browse files Browse the repository at this point in the history
  • Loading branch information
255doesnotexist committed Oct 12, 2024
1 parent 86724b6 commit 153dcdc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: lintestor-${{ matrix.target }}
path: target/${{ matrix.target }}/release/lintestor-${{ matrix.target }}
name: lintestor-${{ matrix.target }}-${{ steps.date.outputs.date }}
path: target/${{ matrix.target }}/release/lintestor-${{ matrix.target }}-${{ steps.date.outputs.date }}

create-release:
needs: build
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
tag_name: release-${{ steps.date.outputs.date }}
name: Nightly Release ${{ steps.date.outputs.date }}
files: |
artifacts/lintestor-x86_64-unknown-linux-gnu-*
artifacts/lintestor-i686-unknown-linux-gnu-*
artifacts/lintestor-aarch64-unknown-linux-gnu-*
artifacts/lintestor-armv7-unknown-linux-gnueabihf-*
artifacts/lintestor-riscv64gc-unknown-linux-gnu-*
artifacts/lintestor-x86_64-unknown-linux-gnu-${{ steps.date.outputs.date }}
artifacts/lintestor-i686-unknown-linux-gnu-${{ steps.date.outputs.date }}
artifacts/lintestor-aarch64-unknown-linux-gnu-${{ steps.date.outputs.date }}
artifacts/lintestor-armv7-unknown-linux-gnueabihf-${{ steps.date.outputs.date }}
artifacts/lintestor-riscv64gc-unknown-linux-gnu-${{ steps.date.outputs.date }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 153dcdc

Please sign in to comment.