-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from bijington/feature/add-release-pipeline
Add nugget release pipeline
- Loading branch information
Showing
2 changed files
with
42 additions
and
1 deletion.
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,41 @@ | ||
name: Create a (Pre)release on NuGet | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
- "v[0-9]+.[0-9]+.[0-9]+-preview[0-9]+" | ||
jobs: | ||
release-nuget: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Verify commit exists in origin/main | ||
run: | | ||
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* | ||
git branch --remote --contains | grep origin/main | ||
- name: Get version information from tag | ||
id: get_version | ||
uses: battila7/get-version-action@v2 | ||
|
||
- name: Restore dependencies | ||
run: dotnet restore .\Source\Expressive\Expressive.csproj | ||
|
||
- name: Build | ||
run: dotnet build --configuration Release --no-restore .\Source\Expressive\Expressive.csproj /p:Version=${{ steps.get_version.outputs.version-without-v }} | ||
|
||
- name: Pack | ||
run: dotnet pack .\Source\Expressive\Expressive.csproj -c Release /p:Version=${{ steps.get_version.outputs.version-without-v }} --no-build --output . | ||
|
||
- name: Push | ||
run: dotnet nuget push Expressive.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.NUGET_API_KEY }} | ||
|
||
- name: Push symbols | ||
run: dotnet nuget push Expressive.${{ steps.get_version.outputs.version-without-v }}.snupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.NUGET_API_KEY }} |
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