Skip to content

Commit 8edf367

Browse files
committed
fix the gh actions release flow
1 parent 323321c commit 8edf367

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ jobs:
3737

3838
- name: Rename binary
3939
run: |
40-
mv target/${{ matrix.target }}/release/parseable Parseable_${{ matrix.target }}
40+
mv target/${{ matrix.target }}/release/parseable Parseable_OSS_${{ matrix.target }}
4141
4242
- name: Create Artifact
4343
uses: actions/upload-artifact@v3
4444
with:
45-
name: Parseable_oss_${{ matrix.target }}
46-
path: Parseable_oss_${{ matrix.target }}
45+
name: Parseable_OSS_${{ matrix.target }}
46+
path: Parseable_OSS_${{ matrix.target }}
4747

4848
- name: Publish Archive to Release Page
4949
uses: softprops/[email protected]
5050
if: ${{ startsWith(github.ref, 'refs/tags/') }}
5151
with:
5252
draft: false
53-
files: Parseable_oss_${{ matrix.target }}
53+
files: Parseable_OSS_${{ matrix.target }}
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656

@@ -73,20 +73,20 @@ jobs:
7373

7474
- name: Rename binary
7575
run: |
76-
mv target/x86_64-pc-windows-msvc/release/PARSEABLE.exe Parseable_oss_x86_64-pc-windows-msvc.exe
76+
mv target/x86_64-pc-windows-msvc/release/PARSEABLE.exe Parseable_OSS_x86_64-pc-windows-msvc.exe
7777
7878
- name: Create artifact for Windows
7979
uses: actions/upload-artifact@v2
8080
with:
81-
name: Parseable_oss_x86_64-pc-windows-msvc.exe
82-
path: Parseable_oss_x86_64-pc-windows-msvc.exe
81+
name: Parseable_OSS_x86_64-pc-windows-msvc.exe
82+
path: Parseable_OSS_x86_64-pc-windows-msvc.exe
8383

8484
- name: Publish Archive to Release Page
8585
uses: softprops/[email protected]
8686
if: ${{ startsWith(github.ref, 'refs/tags/') }}
8787
with:
8888
draft: false
89-
files: Parseable_oss_x86_64-pc-windows-msvc.exe
89+
files: Parseable_OSS_x86_64-pc-windows-msvc.exe
9090
env:
9191
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9292

@@ -118,20 +118,20 @@ jobs:
118118
119119
- name: Rename binary
120120
run: |
121-
mv target/${{ matrix.target }}/release/Parseable Parseable_oss_${{ matrix.target }}
121+
mv target/${{ matrix.target }}/release/Parseable Parseable_OSS_${{ matrix.target }}
122122
123123
- name: Create artifact
124124
uses: actions/upload-artifact@v2
125125
with:
126-
name: Parseable_oss_${{ matrix.target }}
127-
path: Parseable_oss_${{ matrix.target }}
126+
name: Parseable_OSS_${{ matrix.target }}
127+
path: Parseable_OSS_${{ matrix.target }}
128128

129129
- name: Publish Archive to Release Page
130130
uses: softprops/[email protected]
131131
if: ${{ startsWith(github.ref, 'refs/tags/') }}
132132
with:
133133
draft: false
134-
files: Parseable_oss_${{ matrix.target }}
134+
files: Parseable_OSS_${{ matrix.target }}
135135
env:
136136
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
137137

@@ -144,7 +144,7 @@ jobs:
144144

145145
- name: Run shasum command
146146
run: |
147-
find . -type f -name "Parseable_oss_*" -exec shasum {} \; | sed 's/.\/.*\///' > checksum.txt
147+
find . -type f -name "Parseable_OSS_*" -exec shasum {} \; | sed 's/.\/.*\///' > checksum.txt
148148
149149
- name: Create artifact
150150
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)