push to nuget.org #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: push to nuget.org | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
env: | |
BUILD_CONFIGURATION: Release | |
PACKAGE_PATH: ./GameRank.Core/bin/Release | |
ARTIFACT_PATH: ./Artifacts | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' # submodule 받아오지 않으면 stylecop이 제대로 동작하지 않는다. | |
- name: Get Version from Tag | |
id: get_version | |
run: | | |
TAG_VERSION=$(git describe --tags --abbrev=0 | sed 's/v//') | |
echo "TAG_VERSION=$TAG_VERSION" >> $GITHUB_ENV | |
shell: bash | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c ${{env.BUILD_CONFIGURATION}} --no-restore | |
- name: Test | |
run: dotnet test -c ${{env.BUILD_CONFIGURATION}} --no-build --verbosity normal | |
- name: pack | |
run: dotnet pack -p:PackageVersion=$TAG_VERSION -c ${{env.BUILD_CONFIGURATION}} | |
- name: gather artifacts | |
run: | | |
mkdir ${{env.ARTIFACT_PATH}} | |
cp -r ${{env.PACKAGE_PATH}}/*.nupkg ${{env.ARTIFACT_PATH}} | |
shell: bash | |
- name: upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nuget | |
path: ${{env.ARTIFACT_PATH}} | |
push-to-nuget: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: nuget | |
path: ${{env.ARTIFACT_PATH}} | |
- name: push | |
run: dotnet nuget push ${{env.ARTIFACT_PATH}}/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} | |
push-to-github-package: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: nuget | |
path: ${{env.ARTIFACT_PATH}} | |
- name: push | |
run : dotnet nuget push ${{env.ARTIFACT_PATH}}/**/*.nupkg --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --api-key ${{ secrets.PRIVATE_ACCESS_TOKEN }} | |
create-relase: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: nuget | |
path: ${{env.ARTIFACT_PATH}} | |
- name: create release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
draft: false | |
prerelease: false | |
artifacts: ${{env.ARTIFACT_PATH}}/**/*.nupkg |