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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
BUILD_DIRECTORY: ''
UNITY_PROJECT_PATH: ${{ github.workspace }}/UnityProject
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: 'npm install -g openupm-cli'
- uses: RageAgainstThePixel/unity-setup@v1
- uses: RageAgainstThePixel/unity-setup@main
with:
version-file: 'None'
build-targets: ${{ matrix.build-target }}
Expand Down Expand Up @@ -70,26 +70,26 @@
echo "Creating build directory at $build_directory"
mkdir -p "$build_directory"
echo "BUILD_DIRECTORY=$build_directory" >> "$GITHUB_ENV"
- uses: RageAgainstThePixel/activate-unity-license@v1
- uses: RageAgainstThePixel/activate-unity-license@main
with:
license: 'Personal'
username: ${{ secrets.UNITY_USERNAME }}
password: ${{ secrets.UNITY_PASSWORD }}
- uses: RageAgainstThePixel/create-unity-project@v1
- uses: RageAgainstThePixel/create-unity-project@main
name: Create Test Project
with:
project-name: UnityProject
template-name: com.unity.template.3d(-cross-platform)?
- run: openupm add com.utilities.buildpipeline
name: Add Build Pipeline Package
working-directory: ${{ env.UNITY_PROJECT_PATH }}
- uses: RageAgainstThePixel/unity-action@v2
- uses: RageAgainstThePixel/unity-action@main
name: '${{ matrix.build-target }}-Validate'
with:
build-target: ${{ matrix.build-target }}
log-name: '${{ matrix.build-target }}-Validate'
args: '-quit -nographics -batchmode -executeMethod Utilities.Editor.BuildPipeline.UnityPlayerBuildTools.ValidateProject -importTMProEssentialsAsset'
- uses: RageAgainstThePixel/unity-action@v2
- uses: RageAgainstThePixel/unity-action@main
name: '${{ matrix.build-target }}-Build'
with:
build-target: ${{ matrix.build-target }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
workflow_dispatch:
jobs:
update-release-tags:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: RageAgainstThePixel/update-action-release-tags@v1
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ concurrency:
jobs:
setup:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
sparse-checkout: .github/
- uses: RageAgainstThePixel/job-builder@v1
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To archive, export, and upload directly to Apple App Store Connect, use the foll

```yaml
steps:
- uses: buildalon/unity-xcode-builder@v1
- uses: RageAgainstThePixel/unity-xcode-builder@v1
id: xcode-build
with:
project-path: '/path/to/your/build/output/directory'
Expand Down Expand Up @@ -80,3 +80,4 @@ This action requires several secrets that need to be setup in the repository or

- `executable`: Path to the exported archive executable.
- `output-directory`: The path to the export output directory.

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ outputs:
output-directory:
description: The path to the export output directory.
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
post: 'dist/index.js'
Loading
Loading