Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update actions artifact #931

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
mv target/${{ matrix.target }}/release/parseable Parseable_OSS_${{ matrix.target }}

- name: Create Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Parseable_OSS_${{ matrix.target }}
path: Parseable_OSS_${{ matrix.target }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
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
uses: actions/upload-artifact@v4
with:
name: Parseable_OSS_x86_64-pc-windows-msvc.exe
path: Parseable_OSS_x86_64-pc-windows-msvc.exe
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
mv target/${{ matrix.target }}/release/Parseable Parseable_OSS_${{ matrix.target }}

- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Parseable_OSS_${{ matrix.target }}
path: Parseable_OSS_${{ matrix.target }}
Expand All @@ -147,7 +147,7 @@ jobs:
find . -type f -name "Parseable_OSS_*" -exec shasum {} \; | sed 's/.\/.*\///' > checksum.txt

- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: checksum.txt
path: checksum.txt
Expand Down
Loading