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

chore(deps): bump actions/upload-artifact from 2 to 3 #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
files: ./packages/combustile_editor/build/linux/x64/release/bundle/
dest: linux.zip
- name: Upload binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: linux
path: linux.zip
Expand All @@ -45,7 +45,7 @@ jobs:
files: ./packages/combustile_editor/build/windows/runner/Release/
dest: windows.zip
- name: Upload binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: windows
path: windows.zip
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Zips the build
run: cd ./packages/combustile_editor/build/macos/Build/Products/Release && zip -r osx.zip Combustile\ Editor.app
- name: Upload binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: osx
path: ./packages/combustile_editor/build/macos/Build/Products/Release/osx.zip
Expand Down