Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release on workflow_dispatch #8

Merged
merged 3 commits into from
Apr 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ on:
tags:
- "!*" # not a tag push
pull_request:
types:
- opened
- synchronize
branches:
- master

jobs:
build-dotnet:
Expand Down
49 changes: 33 additions & 16 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
name: Build-Release

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+*"
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 release/nuget."
required: true
default: "false"

env:
GIT_TAG: ${{ github.event.inputs.tag }}
DRY_RUN: ${{ github.event.inputs.dry_run }}
DOTNET_SDK_VERISON_2: 2.1.x
DOTNET_SDK_VERISON_3: 3.1.x

jobs:
build-dotnet:
Expand All @@ -16,13 +28,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.x
dotnet-version: ${{ env.DOTNET_SDK_VERISON_2 }}
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
# set release tag(*.*.*) to env.GIT_TAG
- run: echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

dotnet-version: ${{ env.DOTNET_SDK_VERISON_3 }}
# pack nuget
- run: dotnet build -c Release -p:Version=${{ env.GIT_TAG }}
- run: dotnet test -c Release --no-build -p:Version=${{ env.GIT_TAG }}
Expand All @@ -33,6 +42,7 @@ jobs:
path: ./publish

create-release:
if: github.event.inputs.dry_run == 'false'
needs: [build-dotnet]
runs-on: ubuntu-latest
env:
Expand All @@ -43,21 +53,28 @@ jobs:
# setup dotnet for nuget push
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
# set release tag(*.*.*) to env.GIT_TAG
- run: echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

dotnet-version: ${{ env.DOTNET_SDK_VERISON_3 }}
# tag
- uses: actions/checkout@v2
- 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: ${{ github.ref }}
release_name: Ver.${{ github.ref }}

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 }}