Update to actions/upload-artifact@v4 to fix deprecation failures (#160)
This commit is contained in:
8
.github/workflows/godot-ci.yml
vendored
8
.github/workflows/godot-ci.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
cd $PROJECT_PATH
|
cd $PROJECT_PATH
|
||||||
godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe"
|
godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: windows
|
name: windows
|
||||||
path: build/windows
|
path: build/windows
|
||||||
@@ -58,7 +58,7 @@ jobs:
|
|||||||
cd $PROJECT_PATH
|
cd $PROJECT_PATH
|
||||||
godot --headless --verbose --export-release "Linux" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
|
godot --headless --verbose --export-release "Linux" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: linux
|
name: linux
|
||||||
path: build/linux
|
path: build/linux
|
||||||
@@ -84,7 +84,7 @@ jobs:
|
|||||||
cd $PROJECT_PATH
|
cd $PROJECT_PATH
|
||||||
godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html"
|
godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: web
|
name: web
|
||||||
path: build/web
|
path: build/web
|
||||||
@@ -118,7 +118,7 @@ jobs:
|
|||||||
cd $PROJECT_PATH
|
cd $PROJECT_PATH
|
||||||
godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip"
|
godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: mac
|
name: mac
|
||||||
path: build/mac
|
path: build/mac
|
||||||
|
|||||||
Reference in New Issue
Block a user