-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add required fields for Nuget package feat(ci): only publish actual library fix(ci): include packageversion property fix(ci): better version exporting fix(ci): even simpler version variable chore(ci): test workflow while i figure out what is wrong bash maybe? fix(ci): use bash for all run steps fix(ci): go into project directory before building run test workflow so i stop making build a a lets try this lets try dashes a I'll squash this later remove project file from pack command try manually specificying the version try suggestion from github prefix packageid with companyname tidy up
- Loading branch information
1 parent
251344d
commit 6f4436b
Showing
3 changed files
with
63 additions
and
3 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,28 @@ | ||
name: Publish Library | ||
|
||
# When a release is published | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
# 2019, has our .NET needs, latest does not | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get version | ||
run: | | ||
echo "VERSION=${{ github.event.release.tag_name }}" >> $env:GITHUB_ENV | ||
echo "Building with ${{ env.VERSION }}" | ||
- name: Setup .NET 7 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 7.0.x | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore -p:Version=${{ env.VERSION }} | ||
- name: Pack | ||
run: dotnet pack Elements.Quantity --output nupkgs --configuration Release -p:Version=${{ env.VERSION }} | ||
- name: Nuget Publish | ||
run: dotnet nuget push nupkgs/*.nupkg -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json |
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,28 @@ | ||
name: Whatever | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
# 2019, has our .NET needs, latest does not | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# While this package targets .Net Framework 4.6.2, the dotnet 7 stuff will work. | ||
- name: Get version | ||
run: | | ||
echo "VERSION=7" >> $env:GITHUB_ENV | ||
- name: Setup .NET 7 | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 7.0.x | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore -p:Version=${{ env.VERSION }} | ||
- name: Pack | ||
run: dotnet pack Elements.Quantity --output nupkgs --configuration Release -p:Version=${{ env.VERSION }} -p:PackageVersion=${{ env.VERSION }} |
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