Skip to content

Commit

Permalink
Create dev-autopublish
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioGaming authored Apr 16, 2024
1 parent 9049efb commit dff43a3
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/dev-autopublish
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish NuGet Package

on:
push:
branches:
- dev

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.x' # or the version you are using

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release

- name: Determine version
id: version
run: echo "::set-output name=version::0.$((${GITHUB_RUN_NUMBER} / 100)).$((${GITHUB_RUN_NUMBER} % 100))"

- name: Pack
run: dotnet pack --configuration Release --version-suffix "-dev${{ steps.version.outputs.version }}" --output nupkgs

- name: Publish to NuGet
run: dotnet nuget push nupkgs/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit dff43a3

Please sign in to comment.