diff options
author | Nick <nickagerace@gmail.com> | 2021-03-29 22:20:37 -0400 |
---|---|---|
committer | Nick <nickagerace@gmail.com> | 2021-03-29 22:20:37 -0400 |
commit | 85a5ca9b6c3c60a60927259a3557c8f20c28a01d (patch) | |
tree | 9e51bb2d8191f5025d52660af316a587c5e5b9f9 /.github/workflows | |
parent | bf0e6071ddcfc7a1108e8dc189470772b5251a7d (diff) | |
download | gfold-85a5ca9b6c3c60a60927259a3557c8f20c28a01d.zip |
Use out-dir unstable flag for release
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d618825..f171d4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,11 +21,11 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build --release + run: cargo build --release -Z unstable-options --out-dir release - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: gfold/target/release/${{ matrix.artifact_name }} + file: release/${{ matrix.artifact_name }} asset_name: ${{ matrix.asset_name }} tag: ${{ github.ref }} |