We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e1239 commit 16c92d5Copy full SHA for 16c92d5
1 file changed
.github/workflows/release.yml
@@ -20,9 +20,12 @@ jobs:
20
21
runs-on: ${{ matrix.runs-on }}
22
23
+ defaults:
24
+ run:
25
+ shell: bash
26
+
27
steps:
28
- name: Set version
- shell: bash
29
run: |
30
TAG=${{ github.ref_name }}
31
echo "VERSION=${TAG#v}" >> $GITHUB_ENV
@@ -48,7 +51,6 @@ jobs:
48
51
run: dotnet publish StringSpy --no-restore --self-contained true --runtime ${{ matrix.rid }} /p:Version=${VERSION}
49
52
50
53
- name: Create archive
54
working-directory: StringSpy/bin/Release/net9.0/${{ matrix.rid }}/publish/
55
run: ${{ matrix.archive-cmd }} stringspy-${VERSION}-${{ matrix.rid }}.${{ matrix.archive-suffix }} *
56
0 commit comments