Skip to content

Commit

Permalink
ci: Cysharp/Actions/.github/workflows/create-release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
guitarrapc committed Feb 7, 2024
1 parent 25c2f3f commit 98f73b8
Showing 1 changed file with 20 additions and 22 deletions.
42 changes: 20 additions & 22 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,18 @@ on:
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

env:
GIT_TAG: ${{ github.event.inputs.tag }}

jobs:
dotnet-build-and-push:
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: |
Expand All @@ -28,21 +27,20 @@ jobs:
- 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
- run: dotnet nuget push "./publish/*.nupkg" -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }}
# Store artifacts.
- uses: actions/upload-artifact@v2
with:
name: nuget
path: ./publish/

# release
create-release:
needs: [dotnet-build-and-push]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
# 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 }}
draft: true
prerelease: false
needs: [build-dotnet]
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

0 comments on commit 98f73b8

Please sign in to comment.