Skip to content

Commit

Permalink
Merge pull request #46 from Cysharp/feature/new_release
Browse files Browse the repository at this point in the history
ci: Cysharp/Actions/.github/workflows/create-release.yaml
  • Loading branch information
guitarrapc authored Apr 17, 2024
2 parents 3774e7a + e8027a2 commit 5ff7a4f
Showing 1 changed file with 13 additions and 46 deletions.
59 changes: 13 additions & 46 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ 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
Expand All @@ -24,8 +20,8 @@ jobs:
- uses: actions/checkout@v3
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
# pack nuget
- run: dotnet build -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 pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish
- uses: actions/upload-artifact@v2
with:
name: nuget
Expand All @@ -35,44 +31,15 @@ jobs:
name: UnitGenerator
path: ./src/UnitGenerator/bin/Release/netstandard2.0/UnitGenerator.dll

# release
create-release:
if: github.event.inputs.dry-run == 'false'
needs: build-dotnet
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
- uses: actions/checkout@v3
# tag
- name: tag
run: git tag ${{ env.GIT_TAG }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
tags: true
# 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
# 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
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./UnitGenerator/UnitGenerator.dll
asset_name: UnitGenerator.dll
asset_content_type: application/octet-strea
needs: [build-dotnet]
uses: Cysharp/Actions/.github/workflows/create-release.yaml@main
with:
commit-id: ''
dry-run: ${{ inputs.dry-run }}
tag: ${{ inputs.tag }}
nuget-push: true
release-upload: true
release-asset-path: ./UnitGenerator/UnitGenerator.dll
secrets: inherit

0 comments on commit 5ff7a4f

Please sign in to comment.