Skip to content

Merge pull request #119 from nenoNaninu/fix_nested_type_global #25

Merge pull request #119 from nenoNaninu/fix_nested_type_global

Merge pull request #119 from nenoNaninu/fix_nested_type_global #25

Workflow file for this run

name: release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
env:
DOTNET_VERSION: "7.0.x"
DOTNET_NOLOGO: true
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Get version from git tag
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
- name: dotnet pack Tapper
run: dotnet pack -c Release --output ${{ github.workspace }}/artifacts -p:Version=${{ env.RELEASE_VERSION }} ./src/Tapper/Tapper.csproj
- name: dotnet pack Tapper.Analyzer
run: dotnet pack -c Release --output ${{ github.workspace }}/artifacts -p:Version=${{ env.RELEASE_VERSION }} ./src/Tapper.Analyzer/Tapper.Analyzer.csproj
- name: dotnet pack Tapper.Attributes
run: dotnet pack -c Release --output ${{ github.workspace }}/artifacts -p:Version=${{ env.RELEASE_VERSION }} ./src/Tapper.Attributes/Tapper.Attributes.csproj
- name: dotnet pack Tapper.Generator
run: dotnet pack -c Release --output ${{ github.workspace }}/artifacts -p:Version=${{ env.RELEASE_VERSION }} ./src/Tapper.Generator/Tapper.Generator.csproj
- uses: actions/upload-artifact@v3
with:
name: Packages
path: ${{ github.workspace }}/artifacts
- name: dotnet nuget push
run: dotnet nuget push ${{ github.workspace }}/artifacts/*.nupkg --skip-duplicate -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json