Skip to content
Merged
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
52 changes: 26 additions & 26 deletions .github/workflows/build_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
outputs:
outputs:
changelog: ${{ steps.github_changelog.outputs.changelog }}
steps:

Expand All @@ -36,16 +36,16 @@ jobs:
run: |
echo ${{ steps.get_last_beta.outputs.tag_name }}


- name: checkout version
uses: actions/checkout@v4.1.4
with:
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0

# github changelog
- name: "Generate release changelog"
id: github_changelog
uses: heinrichreimer/github-changelog-generator-action@v2.4
uses: janheinrichmerker/action-github-changelog-generator@v2.4
with:
sinceTag: ${{ steps.get_last_beta.outputs.tag_name }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -58,7 +58,7 @@ jobs:
simpleList: true

- name: Upload changelog
uses: actions/upload-artifact@v4.3.3
uses: actions/upload-artifact@v7.0.1
with:
name: changelog
path: CHANGELOG.md
Expand All @@ -68,16 +68,16 @@ jobs:
PLUGIN_NAME: hdr
runs-on: ubuntu-24.04
needs: version_and_changelog
container:
container:
image: wuboyth/skyline-plugin-builder:latest
outputs:
outputs:
trimmed_tag: ${{ steps.trimmed_tag.outputs.tag }}
steps:
# - name: setup python
# uses: actions/setup-python@v5.1.0
# uses: actions/setup-python@v6.2.0
# with:
# python-version: '3.9' # Version range or exact version of a Python version to use, using SemVer's version range syntax

- id: trimmed_tag
shell: bash
run: |
Expand All @@ -88,7 +88,7 @@ jobs:
echo "##[set-output name=tag;]$TRIMMED";

- name: checkout version
uses: actions/checkout@v4.1.4
uses: actions/checkout@v6.0.2

# build the project
- run: |
Expand All @@ -103,7 +103,7 @@ jobs:
# echo lol > distributions/hdr-ryujinx.zip

- name: Upload version
uses: actions/upload-artifact@v4.3.3
uses: actions/upload-artifact@v7.0.1
with:
name: version
path: hdr_version.txt
Expand All @@ -122,7 +122,7 @@ jobs:

# upload asset
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: distributions/*
Expand All @@ -139,7 +139,7 @@ jobs:
needs: [version_and_changelog, plugin_build]
steps:
- name: checkout version
uses: actions/checkout@v4.1.4
uses: actions/checkout@v6.0.2

- id: romfs_latest
uses: pozetroninc/github-action-get-latest-release@master
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

# upload the upgrade data to the previous release for auto updater
- name: Upload upgrade data to previous release
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: upgrade_artifacts/upgrade.zip
Expand All @@ -208,7 +208,7 @@ jobs:

# upload the upgrade data to the previous release for auto updater
- name: Upload upgrade deletions to previous release
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: upgrade_artifacts/deletions.json
Expand All @@ -219,20 +219,20 @@ jobs:
tag: ${{ steps.package_latest.outputs.release }}
overwrite: true

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v8.0.1
with:
name: changelog

- name: Display structure of downloaded changelog
run: ls -R && cp CHANGELOG.md artifacts

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v8.0.1
with:
name: version

# build the lvd files
# - id: lvd_files
# uses: robinraju/release-downloader@v1.7
# uses: robinraju/release-downloader@v1.13
# with:
# repository: "techyCoder81/SSBU-LVD-data-dump"
# tag: release
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
# destination_branch: 'gh-pages'

- name: Upload full package to betas
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: artifacts/*
Expand All @@ -284,11 +284,11 @@ jobs:
needs: [full_package, version_and_changelog]
steps:
- name: checkout version
uses: actions/checkout@v4.1.4
uses: actions/checkout@v6.0.2

# download the prerelease
- id: latest_prerelease
uses: robinraju/release-downloader@v1.7
uses: robinraju/release-downloader@v1.13
with:
repository: "HDR-Development/HDR-PreReleases"
latest: true
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:

# upload the to-prerelease.zip to the beta for the launcher
- name: Upload to-prerelease.zip to beta
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: to-prerelease.zip
Expand All @@ -331,7 +331,7 @@ jobs:

# upload the to_prerelease_deletions.json to the beta for the launcher
- name: Upload to_prerelease_deletions.json to beta
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: to_prerelease_deletions.json
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_devrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
image: wuboyth/skyline-plugin-builder:latest
steps:
- name: checkout version
uses: actions/checkout@v4.1.4
uses: actions/checkout@v6.0.2

# get the most recent latest full release
- id: package_latest
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# upload the upgrade data to the previous release for auto updater
# - name: Upload upgrade data to previous release
# if: steps.package_latest.outcome != 'failure'
# uses: svenstaro/upload-release-action@v2
# uses: svenstaro/upload-release-action@v2.11.5
# with:
# repo_token: ${{ secrets.RELEASE_TOKEN }}
# file: upgrade_artifacts/upgrade.zip
Expand All @@ -105,7 +105,7 @@ jobs:
# upload the upgrade deletions to the previous release for auto updater
# - name: Upload upgrade deletions to previous release
# if: steps.package_latest.outcome != 'failure'
# uses: svenstaro/upload-release-action@v2
# uses: svenstaro/upload-release-action@v2.11.5
# with:
# repo_token: ${{ secrets.RELEASE_TOKEN }}
# file: upgrade_artifacts/deletions.json
Expand All @@ -121,7 +121,7 @@ jobs:
# run: ls -R && cp hdr_version.txt artifacts

- name: Upload full package to devreleases
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@v2.11.5
with:
repo_token: ${{ secrets.RELEASE_TOKEN }}
file: artifacts/*
Expand Down
Loading
Loading