generated from kurone-kito/vpm-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #14 from kurone-kito/ios-support
v0.6.2: Added the experimental VRChat for iOS support of the sample world and improved the CI/CD scripts
- Loading branch information
Showing
10 changed files
with
208 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: The CI workflow on push | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '!main' | ||
permissions: | ||
contents: read | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
listPublishDirectory: Website | ||
packagePath: Packages/${{ vars.PACKAGE_NAME }} | ||
pathToCi: ci | ||
unityPackage: ${{ vars.PACKAGE_NAME }}-feature.unitypackage | ||
zipFile: ${{ vars.PACKAGE_NAME }}-feature.zip | ||
steps: | ||
- name: Checkout Local Repository | ||
uses: actions/checkout@v4 | ||
- name: Zip the Package for testing | ||
run: zip -r "${{ github.workspace }}/${{ env.zipFile }}" . | ||
working-directory: "${{ env.packagePath }}" | ||
- name: Build a list of .meta files for future use | ||
run: find "${{ env.packagePath }}/" -name '*.meta' -type f >> metaList | ||
- name: Make a UnityPackage version of the Package for release | ||
uses: pCYSl5EDgo/create-unitypackage@v1 | ||
with: | ||
package-path: ${{ env.unityPackage }} | ||
include-files: metaList | ||
- name: Checkout Automation Repository without removing prior checkouts | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: vrchat-community/package-list-action | ||
path: ${{ env.pathToCi }} | ||
clean: false | ||
- name: Deploy the global.json file | ||
run: cp "${{ github.workspace }}/global.json" "${{ env.pathToCi }}/" | ||
- name: Load cached data from previous runs | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
${{ env.pathToCi }}/.nuke/temp | ||
~/.nuget/packages | ||
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }} | ||
- name: Build Package Version Listing with Nuke | ||
run: '"${{ env.pathToCi }}/build.cmd" BuildRepoListing --root "${{ env.pathToCi }}" --list-publish-directory "$GITHUB_WORKSPACE/${{ env.listPublishDirectory }}" --current-package-name "${{ vars.PACKAGE_NAME }}"' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 +1 @@ | ||
dotnet 6.0.423 | ||
dotnet 6.0.427 |
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
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
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,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"rollForward": "latestMinor", | ||
"version": "6.0.423" | ||
"version": "6.0.427" | ||
} | ||
} |