Build-Release #172
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: Build-Release | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "tag: git tag you want create. (sample 1.0.0)" | |
required: true | |
dry-run: | |
description: "dry-run: false = create release/nuget. true = never create release/nuget." | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
update-packagejson: | |
uses: Cysharp/Actions/.github/workflows/update-packagejson.yaml@main | |
with: | |
file-path: | | |
./src/MemoryPack.Unity/Assets/MemoryPack.Unity/package.json | |
tag: ${{ inputs.tag }} | |
dry-run: ${{ inputs.dry-run }} | |
push-tag: false | |
build-dotnet: | |
needs: [update-packagejson] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- run: echo ${{ needs.update-packagejson.outputs.sha }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.update-packagejson.outputs.sha }} | |
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main | |
# pack nuget | |
- run: dotnet build -c Release -p:Version=${{ inputs.tag }} | |
- run: dotnet test -c Release --no-build | |
- run: dotnet pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish | |
- uses: Cysharp/Actions/.github/actions/upload-artifact@main | |
with: | |
name: nuget | |
path: ./publish | |
retention-days: 1 | |
build-unity: | |
needs: [update-packagejson] | |
strategy: | |
matrix: | |
unity: ["2022.3.39f1"] | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Load secrets | |
id: op-load-secret | |
uses: 1password/load-secrets-action@v2 | |
with: | |
export-env: false | |
env: | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN_PUBLIC }} | |
UNITY_EMAIL: "op://GitHubActionsPublic/UNITY_LICENSE/username" | |
UNITY_PASSWORD: "op://GitHubActionsPublic/UNITY_LICENSE/credential" | |
UNITY_SERIAL: "op://GitHubActionsPublic/UNITY_LICENSE/serial" | |
- run: echo ${{ needs.update-packagejson.outputs.sha }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.update-packagejson.outputs.sha }} | |
# Run SourceGenerater to generate serialization code | |
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main | |
- run: dotnet build -c Debug # require build before run | |
- name: Make sure generated files are exists. | |
run: ls -lR "src/MemoryPack/bin/Debug/netstandard2.1" | |
# Execute Unittest | |
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod UnitTestBuilder.BuildUnitTest /headless /ScriptBackend IL2CPP /BuildTarget StandaloneLinux64 | |
- name: Build UnitTest | |
uses: Cysharp/Actions/.github/actions/unity-builder@main | |
env: | |
UNITY_EMAIL: ${{ steps.op-load-secret.outputs.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ steps.op-load-secret.outputs.UNITY_PASSWORD }} | |
UNITY_SERIAL: ${{ steps.op-load-secret.outputs.UNITY_SERIAL }} | |
with: | |
projectPath: src/MemoryPack.Unity | |
unityVersion: ${{ matrix.unity }} | |
targetPlatform: StandaloneLinux64 | |
buildMethod: UnitTestBuilder.BuildUnitTest | |
customParameters: "/headless /ScriptBackend IL2CPP" | |
# check meta files | |
- uses: Cysharp/Actions/.github/actions/check-metas@main | |
with: | |
directory: src/MemoryPack.Unity | |
# release | |
create-release: | |
needs: [update-packagejson, build-dotnet, build-unity] | |
uses: Cysharp/Actions/.github/workflows/create-release.yaml@main | |
with: | |
dry-run: ${{ inputs.dry-run }} | |
commit-id: ${{ needs.update-packagejson.outputs.sha }} | |
tag: ${{ inputs.tag }} | |
nuget-push: true | |
release-upload: true | |
secrets: inherit | |
cleanup: | |
if: ${{ needs.update-packagejson.outputs.is-branch-created == 'true' }} | |
needs: [update-packagejson, create-release] | |
uses: Cysharp/Actions/.github/workflows/clean-packagejson-branch.yaml@main | |
with: | |
branch: ${{ needs.update-packagejson.outputs.branch-name }} |