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

Updating to artifact v4 #387

Merged
merged 1 commit into from
Feb 6, 2025
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
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
./run_tests.py --no-build

- name: Upload created file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: xml_converter
path: xml_converter/build/xml_converter
Expand All @@ -107,14 +107,14 @@ jobs:
make

- name: Upload Standalone Executable Burrito Link
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: burrito_link_exe
path: burrito_link/build/burrito_link.exe
if-no-files-found: error

- name: Upload Shared Library Burrito Link
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: burrito_link_dll
path: burrito_link/build/d3d11.dll
Expand All @@ -132,7 +132,7 @@ jobs:
cargo build --release

- name: Upload created file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: BurritoFG
path: burrito-fg/target/release/libburrito_fg.so
Expand All @@ -150,7 +150,7 @@ jobs:
cargo build --release

- name: Upload created file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: TacoParser
path: taco_parser/target/release/libgw2_taco_parser.so
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
./Godot_v${GODOT_VERSION}-stable_linux_headless.64 --export "Linux/X11"
chmod +x build/burrito.x86_64

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Burrito_UI
path: build/burrito.x86_64
Expand All @@ -226,32 +226,32 @@ jobs:
- Build-TacoParser-Linux
steps:
- name: Download Burrito UI
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Burrito_UI

- name: Download Burrito FG
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: BurritoFG

- name: Download TacoParser
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: TacoParser

- name: Download XML Converter
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: xml_converter

- name: Download Burrito Link Exe
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: burrito_link_exe

- name: Download Burrito Link DLL
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: burrito_link_dll

Expand All @@ -262,7 +262,7 @@ jobs:
mv burrito_link.exe burrito_link/
mv d3d11.dll burrito_link/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
# Artifact name
name: "Burrito_Linux" # optional, default is artifact
Expand Down