Added icons by default #10
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
name: Release full to NuGet | |
on: | |
push: | |
tags: | |
- 'full/v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get version from tag | |
run: | | |
TAGVERSION=$(git describe --tags --abbrev=0) | |
TAGVERSION=${TAGVERSION#*/} | |
echo "TAGVERSION=${TAGVERSION:1}" >> $GITHUB_ENV | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Pack full with dotnet | |
run: dotnet pack Templates/Full --output nuget-packages-full --configuration Release -p:PackageVersion=${{ env.TAGVERSION }} | |
- name: Push full with dotnet | |
run: dotnet nuget push nuget-packages-full/*.nupkg --api-key ${{ secrets.NUGETAPIKEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate |