2021-02-04 01:59:52 +08:00
|
|
|
name: build-release
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
on:
|
2021-02-04 01:59:52 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
tag:
|
|
|
|
description: "tag: git tag you want create. (sample 1.0.0)"
|
|
|
|
required: true
|
2022-07-26 12:10:40 +08:00
|
|
|
dry-run:
|
|
|
|
description: "dry-run: true will never create relase/nuget."
|
2021-02-04 01:59:52 +08:00
|
|
|
required: true
|
2022-07-26 12:10:40 +08:00
|
|
|
default: false
|
|
|
|
type: boolean
|
2021-02-04 01:59:52 +08:00
|
|
|
|
|
|
|
env:
|
|
|
|
GIT_TAG: ${{ github.event.inputs.tag }}
|
2022-07-26 12:10:40 +08:00
|
|
|
DRY_RUN: ${{ github.event.inputs.dry-run }}
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
jobs:
|
2021-02-04 01:59:52 +08:00
|
|
|
update-packagejson:
|
2022-07-26 12:10:40 +08:00
|
|
|
uses: Cysharp/Actions/.github/workflows/update-packagejson.yaml@main
|
|
|
|
with:
|
|
|
|
file-path: ./src/UniTask/Assets/Plugins/UniTask/package.json
|
|
|
|
tag: ${{ github.event.inputs.tag }}
|
|
|
|
dry-run: ${{ fromJson(github.event.inputs.dry-run) }}
|
2021-02-04 01:59:52 +08:00
|
|
|
|
2020-05-17 01:43:54 +08:00
|
|
|
build-dotnet:
|
2021-02-04 01:59:52 +08:00
|
|
|
needs: [update-packagejson]
|
2020-06-04 14:14:40 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-02-04 01:59:52 +08:00
|
|
|
timeout-minutes: 10
|
2020-06-04 14:14:40 +08:00
|
|
|
steps:
|
2021-02-04 01:59:52 +08:00
|
|
|
- run: echo ${{ needs.update-packagejson.outputs.sha }}
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-04 01:59:52 +08:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.update-packagejson.outputs.sha }}
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
|
|
with:
|
|
|
|
dotnet-version: |
|
|
|
|
3.1.x
|
|
|
|
6.0.x
|
2020-06-04 14:14:40 +08:00
|
|
|
# build and pack
|
|
|
|
- run: dotnet build -c Release -p:Version=${{ env.GIT_TAG }}
|
|
|
|
- run: dotnet test -c Release --no-build
|
2021-02-04 01:59:52 +08:00
|
|
|
- run: dotnet pack ./src/UniTask.NetCore/UniTask.NetCore.csproj -c Release --no-build -p:Version=${{ env.GIT_TAG }} -o ./publish
|
2020-06-04 14:14:40 +08:00
|
|
|
# Store artifacts.
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-06-04 14:14:40 +08:00
|
|
|
with:
|
|
|
|
name: nuget
|
2021-02-04 01:59:52 +08:00
|
|
|
path: ./publish/
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
build-unity:
|
2021-02-04 01:59:52 +08:00
|
|
|
needs: [update-packagejson]
|
2020-05-17 01:43:54 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-10-14 11:12:28 +08:00
|
|
|
unity: ["2019.3.9f1"]
|
2020-05-17 01:43:54 +08:00
|
|
|
include:
|
|
|
|
- unity: 2019.3.9f1
|
2021-02-08 14:54:07 +08:00
|
|
|
license: UNITY_LICENSE_2019
|
2020-05-17 01:43:54 +08:00
|
|
|
runs-on: ubuntu-latest
|
2021-02-04 01:59:52 +08:00
|
|
|
timeout-minutes: 15
|
2020-05-17 01:43:54 +08:00
|
|
|
steps:
|
2021-02-08 18:32:53 +08:00
|
|
|
- run: echo ${{ needs.update-packagejson.outputs.sha }}
|
2020-05-17 01:43:54 +08:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-08 18:32:53 +08:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.update-packagejson.outputs.sha }}
|
2020-05-17 01:43:54 +08:00
|
|
|
# Execute scripts: Export Package
|
2021-02-08 15:53:46 +08:00
|
|
|
# /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export
|
2020-05-17 01:43:54 +08:00
|
|
|
- name: Export unitypackage
|
2022-07-26 12:10:40 +08:00
|
|
|
uses: game-ci/unity-builder@v2
|
2021-02-08 14:54:07 +08:00
|
|
|
env:
|
|
|
|
UNITY_LICENSE: ${{ secrets[matrix.license] }}
|
|
|
|
with:
|
|
|
|
projectPath: src/UniTask
|
|
|
|
unityVersion: ${{ matrix.unity }}
|
|
|
|
targetPlatform: StandaloneLinux64
|
|
|
|
buildMethod: PackageExporter.Export
|
|
|
|
versioning: None
|
2020-05-17 01:43:54 +08:00
|
|
|
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/check-metas@main # check meta files
|
|
|
|
with:
|
|
|
|
directory: src/UniTask
|
2021-02-04 01:59:52 +08:00
|
|
|
|
2020-10-14 11:12:28 +08:00
|
|
|
# Store artifacts.
|
2020-06-04 14:11:51 +08:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-05-17 01:43:54 +08:00
|
|
|
with:
|
2020-06-05 16:05:36 +08:00
|
|
|
name: UniTask.${{ env.GIT_TAG }}.unitypackage
|
|
|
|
path: ./src/UniTask/UniTask.${{ env.GIT_TAG }}.unitypackage
|
2020-05-17 01:43:54 +08:00
|
|
|
|
|
|
|
create-release:
|
2022-07-26 12:10:40 +08:00
|
|
|
if: github.event.inputs.dry-run == 'false'
|
2021-02-04 01:59:52 +08:00
|
|
|
needs: [update-packagejson, build-dotnet, build-unity]
|
2020-05-17 01:43:54 +08:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-26 12:10:40 +08:00
|
|
|
timeout-minutes: 10
|
2020-05-17 01:43:54 +08:00
|
|
|
steps:
|
2022-07-26 12:10:40 +08:00
|
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
2020-10-14 11:12:28 +08:00
|
|
|
# Create Releases
|
|
|
|
- uses: actions/create-release@v1
|
|
|
|
id: create_release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2021-02-04 01:59:52 +08:00
|
|
|
tag_name: ${{ env.GIT_TAG }}
|
|
|
|
release_name: Ver.${{ env.GIT_TAG }}
|
|
|
|
commitish: ${{ needs.update-packagejson.outputs.sha }}
|
|
|
|
draft: true
|
|
|
|
prerelease: false
|
2020-10-14 11:12:28 +08:00
|
|
|
# Download(All) Artifacts to current directory
|
2021-02-04 01:59:52 +08:00
|
|
|
- uses: actions/download-artifact@v2
|
2020-10-14 11:12:28 +08:00
|
|
|
# Upload to NuGet
|
2021-02-04 01:59:52 +08:00
|
|
|
- run: dotnet nuget push "./nuget/*.nupkg" --skip-duplicate -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }}
|
2020-10-14 11:12:28 +08:00
|
|
|
# Upload to Releases(unitypackage)
|
|
|
|
- uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./UniTask.${{ env.GIT_TAG }}.unitypackage/UniTask.${{ env.GIT_TAG }}.unitypackage
|
|
|
|
asset_name: UniTask.${{ env.GIT_TAG }}.unitypackage
|
|
|
|
asset_content_type: application/octet-stream
|
2021-02-04 01:59:52 +08:00
|
|
|
|
|
|
|
cleanup:
|
2022-07-26 12:10:40 +08:00
|
|
|
if: needs.update-packagejson.outputs.is-branch-created == 'true'
|
|
|
|
needs: [update-packagejson, build-dotnet, build-unity]
|
|
|
|
uses: Cysharp/Actions/.github/workflows/clean-packagejson-branch.yaml@main
|
|
|
|
with:
|
|
|
|
branch: ${{ needs.update-packagejson.outputs.branch-name }}
|