We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fac71a7 commit b7c7908Copy full SHA for b7c7908
.github/workflows/build.yml
@@ -46,14 +46,14 @@ jobs:
46
command: build
47
args: --release --target ${{ matrix.target }} --lib
48
49
- - name: list
50
- run: ls target/release
+ - name: Rename file
+ run: mv target/${{ matrix.target }}/release/${{ matrix.file }} target/${{ matrix.target }}-${{ matrix.file }}
51
52
- name: Release
53
uses: softprops/action-gh-release@v1
54
if: startsWith(github.ref, 'refs/tags/')
55
with:
56
files: |
57
- target/${{ matrix.target }}/release/${{ matrix.file }}
+ target/${{ matrix.target }}-${{ matrix.file }}
58
env:
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments