diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 4be28da..5df7b49 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -12,28 +12,21 @@ on: default: false type: boolean -env: - GIT_TAG: ${{ github.event.inputs.tag }} - DRY_RUN: ${{ github.event.inputs.dry-run }} - jobs: build-dotnet: 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 with: dotnet-version: | 3.1.x 5.0.x 6.0.x - - run: dotnet build -c Release -p:Version=${{ env.GIT_TAG }} + - 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=${{ env.GIT_TAG }} -o ./publish + - run: dotnet pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish # Store artifacts. - uses: actions/upload-artifact@v2 with: @@ -41,23 +34,12 @@ jobs: path: ./publish/ create-release: - if: github.event.inputs.dry-run == 'false' needs: [build-dotnet] - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - # Create Release - - 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" --skip-duplicate -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }} + uses: Cysharp/Actions/.github/workflows/create-release.yaml@main + with: + commit-id: '' + tag: ${{ inputs.tag }} + dry-run: ${{ inputs.dry-run }} + nuget-push: true + release-upload: false + secrets: inherit