build-release #15
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: 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: true will never create relase/nuget." | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
update-packagejson: | |
uses: Cysharp/Actions/.github/workflows/update-packagejson.yaml@main | |
with: | |
file-path: ./src/ObservableCollections.Unity/Assets/Plugins/ObservableCollections/package.json | |
tag: ${{ inputs.tag }} | |
dry-run: ${{ inputs.dry-run }} | |
build-dotnet: | |
needs: [update-packagejson] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- run: echo ${{ needs.update-packagejson.outputs.sha }} | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ needs.update-packagejson.outputs.sha }} | |
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main | |
# build and pack | |
- run: dotnet build ObservableCollection.WithoutSandbox.slnf -c Release -p:Version=${{ inputs.tag }} | |
- run: dotnet test ObservableCollection.WithoutSandbox.slnf -c Release --no-build | |
- run: dotnet pack ObservableCollection.WithoutSandbox.slnf -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish | |
# Store artifacts. | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: nuget | |
path: ./publish/ | |
build-unity: | |
needs: [update-packagejson] | |
strategy: | |
matrix: | |
unity: ["2019.4.25f1"] | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- run: echo ${{ needs.update-packagejson.outputs.sha }} | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ needs.update-packagejson.outputs.sha }} | |
# Execute scripts: Export Package | |
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export | |
- name: Build Unity (.unitypacakge) | |
uses: Cysharp/Actions/.github/actions/unity-builder@main | |
env: | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | |
with: | |
projectPath: src/ObservableCollections.Unity | |
unityVersion: ${{ matrix.unity }} | |
targetPlatform: StandaloneLinux64 | |
buildMethod: PackageExporter.Export | |
- uses: Cysharp/Actions/.github/actions/check-metas@main # check meta files | |
with: | |
directory: src/ObservableCollections.Unity | |
# Store artifacts. | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ObservableCollections.${{ inputs.tag }}.unitypackage | |
path: ./src/ObservableCollections.Unity/ObservableCollections.${{ inputs.tag }}.unitypackage | |
# release | |
create-release: | |
needs: [update-packagejson, build-unity] | |
uses: Cysharp/Actions/.github/workflows/create-release.yaml@main | |
with: | |
commit-id: ${{ needs.update-packagejson.outputs.sha }} | |
dry-run: ${{ inputs.dry-run }} | |
tag: ${{ inputs.tag }} | |
nuget-push: true | |
release-upload: true | |
release-asset-path: ./ObservableCollections.${{ inputs.tag }}.unitypackage/ObservableCollections.${{ inputs.tag }}.unitypackage | |
secrets: inherit | |
cleanup: | |
if: ${{ needs.update-packagejson.outputs.is-branch-created == 'true' }} | |
needs: [update-packagejson, build-unity] | |
uses: Cysharp/Actions/.github/workflows/clean-packagejson-branch.yaml@main | |
with: | |
branch: ${{ needs.update-packagejson.outputs.branch-name }} |