From 440edca6b4d12db9ea0bdc90fe048eac255539ac Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 7 Feb 2024 21:03:49 +0900 Subject: [PATCH] ci: Cysharp/Actions/.github/workflows/create-release.yaml --- .github/workflows/build-release.yml | 64 +++++++++-------------------- 1 file changed, 19 insertions(+), 45 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 8e16872..9e19af8 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -12,17 +12,13 @@ on: default: false type: boolean -env: - GIT_TAG: ${{ github.event.inputs.tag }} - DRY_RUN: ${{ github.event.inputs.dry-run }} - jobs: update-packagejson: uses: Cysharp/Actions/.github/workflows/update-packagejson.yaml@main with: file-path: ./src/Ulid.Unity/Assets/Scripts/Ulid/package.json - tag: ${{ github.event.inputs.tag }} - dry-run: ${{ fromJson(github.event.inputs.dry-run) }} + tag: ${{ inputs.tag }} + dry-run: ${{ inputs.dry-run }} build-dotnet: needs: [update-packagejson] @@ -33,9 +29,9 @@ jobs: with: ref: ${{ needs.update-packagejson.outputs.sha }} - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - - run: dotnet build -c Release -p:Version=${{ env.GIT_TAG }} - - run: dotnet test -c Release -p:Version=${{ env.GIT_TAG }} - - run: dotnet pack -c Release --no-build -p:Version=${{ env.GIT_TAG }} -o ./publish + - run: dotnet build -c Release -p:Version=${{ inputs.tag }} + - run: dotnet test -c Release -p:Version=${{ inputs.tag }} + - run: dotnet pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish # Store artifacts. - uses: actions/upload-artifact@v2 @@ -63,7 +59,7 @@ jobs: UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} - UNITY_PACKAGE_VERSION: ${{ env.GIT_TAG }} + UNITY_PACKAGE_VERSION: ${{ inputs.tag }} with: projectPath: src/Ulid.Unity unityVersion: ${{ matrix.unity }} @@ -77,46 +73,24 @@ jobs: # Store artifacts. - uses: actions/upload-artifact@v1 with: - name: Ulid.Unity.${{ env.GIT_TAG }}.unitypackage - path: ./src/Ulid.Unity/Ulid.Unity.${{ env.GIT_TAG }}.unitypackage + name: Ulid.Unity.${{ inputs.tag }}.unitypackage + path: ./src/Ulid.Unity/Ulid.Unity.${{ inputs.tag }}.unitypackage + # release create-release: - if: github.event.inputs.dry-run == 'false' needs: [update-packagejson, build-dotnet, build-unity] - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - - uses: Cysharp/Actions/.github/actions/setup-dotnet@main - # Create Releases - - uses: actions/create-release@v1 - id: create_release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ env.GIT_TAG }} - release_name: Ver.${{ env.GIT_TAG }} - commitish: ${{ needs.update-packagejson.outputs.sha }} - draft: true - prerelease: false - - # Download (All) Artifacts to current directory - - uses: actions/download-artifact@v2 - - # Upload to NuGet - - run: dotnet nuget push "./nuget/*.nupkg" -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }} - - # 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: ./Ulid.Unity.${{ env.GIT_TAG }}.unitypackage/Ulid.Unity.${{ env.GIT_TAG }}.unitypackage - asset_name: Ulid.Unity.${{ env.GIT_TAG }}.unitypackage - asset_content_type: application/octet-stream + 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: ./Ulid.Unity.${{ inputs.tag }}.unitypackage/Ulid.Unity.${{ inputs.tag }}.unitypackage + secrets: inherit cleanup: - if: needs.update-packagejson.outputs.is-branch-created == 'true' + 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: