Bump Project Version to 1.12.1 (#65) #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frog Smashers Unity Actions | |
# Frog Smashers Unity Actions (Copied from https://github.com/game-ci/unity-actions-example/blob/main/.github/workflows/main.yml) | |
# on: | |
# # pull_request: {} | |
# push: {} | |
# push: | |
# branches: | |
# - master | |
on: | |
push: | |
tags: | |
- '*' | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
GIT_ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }} | |
PROJECT_PATH: HohimBrueh | |
jobs: | |
checklicense: | |
name: check if UNITY_LICENSE is set in github secrets | |
runs-on: ubuntu-latest | |
outputs: | |
is_unity_license_set: ${{ steps.checklicense_job.outputs.is_unity_license_set }} | |
steps: | |
- name: Check whether unity activation requests should be done | |
id: checklicense_job | |
run: | | |
echo "Skip activation job: ${{ env.UNITY_LICENSE != '' }}" | |
echo "::set-output name=is_unity_license_set::${{ env.UNITY_LICENSE != '' }}" | |
activation: | |
needs: [checklicense] | |
if: needs.checklicense.outputs.is_unity_license_set == 'false' | |
name: Request activation file 🔑 | |
runs-on: ubuntu-latest | |
steps: | |
# Request manual activation file | |
- name: Request manual activation file | |
id: getManualLicenseFile | |
# https://github.com/game-ci/unity-request-activation-file/releases/ | |
uses: game-ci/unity-request-activation-file@v2 | |
with: | |
unityVersion: "2022.3.11f1" | |
# Upload artifact (Unity_v20XX.X.XXXX.alf) | |
- name: Expose as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.getManualLicenseFile.outputs.filePath }} | |
path: ${{ steps.getManualLicenseFile.outputs.filePath }} | |
buildWithLinux: | |
needs: [checklicense] | |
if: needs.checklicense.outputs.is_unity_license_set == 'true' | |
name: Build for Linux | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
projectPath: | |
- HohimBrueh | |
targetPlatform: | |
- StandaloneLinux64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ matrix.projectPath }}/Library | |
key: | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}-${{ | |
hashFiles(matrix.projectPath) }} | |
restore-keys: | | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}- | |
Library-${{ matrix.projectPath }}- | |
Library- | |
# https://github.com/game-ci/unity-builder/releases/ | |
- uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
projectPath: ${{ env.PROJECT_PATH }} | |
targetPlatform: ${{ matrix.targetPlatform }} | |
versioning: Tag | |
buildName: FrogSmashersLinux64 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FrogSmashersLinux64 | |
path: build | |
- name: Zip up output | |
run: | | |
cd build/StandaloneLinux64 | |
zip -r ../../FrogSmashersLinux64.zip * | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ env.GIT_ACCESS_TOKEN }} | |
files: FrogSmashersLinux64.zip | |
buildWithMac: | |
needs: [checklicense] | |
if: needs.checklicense.outputs.is_unity_license_set == 'true' | |
name: Build for MacOs | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
projectPath: | |
- HohimBrueh | |
targetPlatform: | |
- StandaloneOSX | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ matrix.projectPath }}/Library | |
key: | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}-${{ | |
hashFiles(matrix.projectPath) }} | |
restore-keys: | | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}- | |
Library-${{ matrix.projectPath }}- | |
Library- | |
- uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
projectPath: ${{ env.PROJECT_PATH }} | |
targetPlatform: ${{ matrix.targetPlatform }} | |
versioning: Tag | |
buildName: FrogSmashersOSX | |
- name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FrogSmashersOSX | |
path: build | |
- name: Zip up output | |
run: | | |
cd build/StandaloneOSX | |
zip -r ../../FrogSmashersOSX.zip * | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ env.GIT_ACCESS_TOKEN }} | |
files: FrogSmashersOSX.zip | |
buildWithWindows: | |
needs: [checklicense] | |
if: needs.checklicense.outputs.is_unity_license_set == 'true' | |
name: Build for Windows | |
runs-on: windows-2022 | |
strategy: | |
fail-fast: false | |
matrix: | |
projectPath: | |
- HohimBrueh | |
targetPlatform: | |
- StandaloneWindows64 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ matrix.projectPath }}/Library | |
key: | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}-${{ | |
hashFiles(matrix.projectPath) }} | |
restore-keys: | | |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}- | |
Library-${{ matrix.projectPath }}- | |
Library- | |
- uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
projectPath: ${{ env.PROJECT_PATH }} | |
targetPlatform: ${{ matrix.targetPlatform }} | |
versioning: Tag | |
buildName: FrogSmashersWindows64 | |
- name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FrogSmashersWindows64 | |
path: build | |
- name: Zip up output | |
run: | | |
cd build/StandaloneWindows64 | |
Compress-Archive -Path . -DestinationPath ../../FrogSmashersWindows64.zip | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
token: ${{ env.GIT_ACCESS_TOKEN }} | |
files: FrogSmashersWindows64.zip |