Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fi

- name: Upload backup artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: weekly-backup-${{ github.run_number }}
path: backups/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-game.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
shell: bash

- name: Upload build artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Illusion-${{ steps.build_info.outputs.version }}
path: build/Illusion-${{ steps.build_info.outputs.version }}.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Upload Windows artifacts
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: launcher-windows
path: |
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Upload macOS artifacts
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: launcher-macos
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
done

- name: Upload Documentation
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: documentation
path: docs/
6 changes: 3 additions & 3 deletions .github/workflows/launcher-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,23 @@ jobs:

- name: 📤 Upload Artifacts (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Illusion-Launcher-Windows
path: launcher-electron/dist/*.exe
retention-days: 30

- name: 📤 Upload Artifacts (macOS)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Illusion-Launcher-macOS
path: launcher-electron/dist/*.dmg
retention-days: 30

- name: 📤 Upload Artifacts (Linux)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Illusion-Launcher-Linux
path: launcher-electron/dist/*.AppImage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/launcher-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload build artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: launcher-build-${{ matrix.os }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Upload Artifact (if manual run)
if: steps.release.outputs.is_manual == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pokemon-illusion-${{ steps.release.outputs.tag }}
path: ${{ env.ZIP_FILE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: rubocop --format progress --format json --out rubocop-results.json || true

- name: Upload RuboCop results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: rubocop-results
Expand Down
Loading