Skip to content

Commit

Permalink
use _ instead of -
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael DEMACON <ndemacon@scaleway.com>
  • Loading branch information
quantumsheep committed Feb 16, 2024
1 parent 7875039 commit f6374e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,19 @@ jobs:
if: matrix.target.os == 'windows' || matrix.target.os == 'darwin'

- name: Set .exe extension for Windows
id: set-extension
id: set_extension
run: echo "extension=.exe" >> $GITHUB_OUTPUT
if: ${{ matrix.target.os == 'windows' }}

- name: Set executable filename
id: set-filename
run: echo "filename=sshs-${{ matrix.target.os }}-${{ matrix.target.arch }}${{ steps.set-extension.outputs.extension }}" >> $GITHUB_OUTPUT
id: set_filename
run: echo "filename=sshs-${{ matrix.target.os }}-${{ matrix.target.arch }}${{ steps.set_extension.outputs.extension }}" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@v2
with:
if-no-files-found: error
name: ${{ steps.set-filename.outputs.filename }}
path: target/${{ matrix.target.rust-target }}/release/sshs${{ steps.set-extension.outputs.extension }}
name: ${{ steps.set_filename.outputs.filename }}
path: target/${{ matrix.target.rust-target }}/release/sshs${{ steps.set_extension.outputs.extension }}

# nix:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit f6374e1

Please sign in to comment.