-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish Release | ||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
|
||
jobs: | ||
build: | ||
env: | ||
SOLUTION: 'EvoSC.Tool.sln' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Configure .NET 7 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '7.0.x' | ||
|
||
- name: Setup Dependencies | ||
run: dotnet restore $SOLUTION | ||
|
||
- name: Build Solution | ||
run: dotnet build $SOLUTION --configuration Release -p:Version=${{github.ref_name}} --no-restore | ||
|
||
- name: Run Tests | ||
run: dotnet test $SOLUTION /p:Configuration=Release --verbosity normal | ||
|
||
- name: Nuget Pack | ||
run: dotnet pack $SOLUTION /p:Version=${{github.ref_name}} -c Release --no-build --output package/ | ||
|
||
- name: ZIP Artifacts | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: package/ | ||
dest: package.zip | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: package | ||
path: ${{ github.workspace }}/package.zip | ||
|
||
- name: NuGet Publish | ||
run: dotnet nuget push "package/EvoSC.Tool.${{github.ref_name}}.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json |