Build-Release #57
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/ZLogger.Unity/Assets/ZLogger.Unity/package.json | |
tag: ${{ inputs.tag }} | |
dry-run: ${{ inputs.dry-run }} | |
build-dotnet: | |
needs: [update-packagejson] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main | |
with: | |
dotnet-version: | | |
5.0.x | |
8.0.x | |
# 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 | |
# Store artifacts. | |
- uses: Cysharp/Actions/.github/actions/upload-artifact@main | |
with: | |
name: nuget | |
path: ./publish/ | |
retention-days: 1 | |
create-release: | |
needs: [update-packagejson, build-dotnet] | |
uses: Cysharp/Actions/.github/workflows/create-release.yaml@main | |
with: | |
commit-id: ${{ needs.update-packagejson.outputs.sha }} | |
tag: ${{ inputs.tag }} | |
dry-run: ${{ inputs.dry-run }} | |
nuget-push: true | |
release-upload: false | |
secrets: inherit | |
cleanup: | |
if: ${{ needs.update-packagejson.outputs.is-branch-created == 'true' }} | |
needs: [update-packagejson, build-dotnet] | |
uses: Cysharp/Actions/.github/workflows/clean-packagejson-branch.yaml@main | |
with: | |
branch: ${{ needs.update-packagejson.outputs.branch-name }} |