-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3228 from KBVE/dev
Preparing Alpha Branch
- Loading branch information
Showing
3 changed files
with
58 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,6 +182,16 @@ jobs: | |
name: Kilonet RareIcon | ||
runs-on: ubuntu-latest | ||
if: needs.alter.outputs.kilonet == 'true' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
projectPath: | ||
- /azure-rareicon | ||
unityVersion: | ||
- 6000.0.25f1 | ||
targetPlatform: | ||
- StandaloneWindows64 | ||
- WebGL | ||
steps: | ||
- name: Checkout this repository | ||
uses: actions/checkout@v4 | ||
|
@@ -193,13 +203,35 @@ jobs: | |
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git clone https://kbve:${AZURE_PAT}@dev.azure.com/kbve/rareicon/_git/rareicon azure-rareicon | ||
cd azure-rareicon | ||
echo "Current working directory: $(pwd)" | ||
echo "Listing all files in the repository:" | ||
find . -type f | ||
echo "Listing all contents (including hidden files):" | ||
ls -la | ||
- name: Unity Cache | ||
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- | ||
- name: Unity Builder | ||
uses: game-ci/unity-builder@v4 | ||
env: | ||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | ||
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | ||
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | ||
with: | ||
projectPath: ${{ matrix.projectPath }} | ||
unityVersion: ${{ matrix.unityVersion }} | ||
targetPlatform: ${{ matrix.targetPlatform }} | ||
|
||
- name: Unity Upload | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Build-${{ matrix.targetPlatform }} | ||
path: build/${{ matrix.targetPlatform }} | ||
|
||
# Alpha Builds | ||
|
||
# buildSaber: | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
## Kilonet | ||
|
||
This is a sample unity for Supabase integration within Rareicon and a couple inhouse games that are we building or partnering with. | ||
I will wrap back around and update this package more often once we get the realtime operational on the supabse instance. | ||
I will wrap back around and update this package more often once we get the realtime operational on the supabse instance. | ||
|
||
Unity Version: 6000.0.25f1 |