-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,20 +37,20 @@ jobs: | |
|
||
- name: Rename binary | ||
run: | | ||
mv target/${{ matrix.target }}/release/parseable Parseable_${{ matrix.target }} | ||
mv target/${{ matrix.target }}/release/parseable Parseable_OSS_${{ matrix.target }} | ||
- name: Create Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Parseable_oss_${{ matrix.target }} | ||
path: Parseable_oss_${{ matrix.target }} | ||
name: Parseable_OSS_${{ matrix.target }} | ||
path: Parseable_OSS_${{ matrix.target }} | ||
|
||
- name: Publish Archive to Release Page | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
draft: false | ||
files: Parseable_oss_${{ matrix.target }} | ||
files: Parseable_OSS_${{ matrix.target }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
@@ -73,20 +73,20 @@ jobs: | |
|
||
- name: Rename binary | ||
run: | | ||
mv target/x86_64-pc-windows-msvc/release/PARSEABLE.exe Parseable_oss_x86_64-pc-windows-msvc.exe | ||
mv target/x86_64-pc-windows-msvc/release/PARSEABLE.exe Parseable_OSS_x86_64-pc-windows-msvc.exe | ||
- name: Create artifact for Windows | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Parseable_oss_x86_64-pc-windows-msvc.exe | ||
path: Parseable_oss_x86_64-pc-windows-msvc.exe | ||
name: Parseable_OSS_x86_64-pc-windows-msvc.exe | ||
path: Parseable_OSS_x86_64-pc-windows-msvc.exe | ||
|
||
- name: Publish Archive to Release Page | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
draft: false | ||
files: Parseable_oss_x86_64-pc-windows-msvc.exe | ||
files: Parseable_OSS_x86_64-pc-windows-msvc.exe | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
@@ -118,20 +118,20 @@ jobs: | |
- name: Rename binary | ||
run: | | ||
mv target/${{ matrix.target }}/release/Parseable Parseable_oss_${{ matrix.target }} | ||
mv target/${{ matrix.target }}/release/Parseable Parseable_OSS_${{ matrix.target }} | ||
- name: Create artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Parseable_oss_${{ matrix.target }} | ||
path: Parseable_oss_${{ matrix.target }} | ||
name: Parseable_OSS_${{ matrix.target }} | ||
path: Parseable_OSS_${{ matrix.target }} | ||
|
||
- name: Publish Archive to Release Page | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
draft: false | ||
files: Parseable_oss_${{ matrix.target }} | ||
files: Parseable_OSS_${{ matrix.target }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
@@ -144,7 +144,7 @@ jobs: | |
|
||
- name: Run shasum command | ||
run: | | ||
find . -type f -name "Parseable_oss_*" -exec shasum {} \; | sed 's/.\/.*\///' > checksum.txt | ||
find . -type f -name "Parseable_OSS_*" -exec shasum {} \; | sed 's/.\/.*\///' > checksum.txt | ||
- name: Create artifact | ||
uses: actions/upload-artifact@v2 | ||
|