Skip to content

Commit

Permalink
Fix the publish packages workflow by setting VERSION_FILE_PATH: src/D…
Browse files Browse the repository at this point in the history
…irectory.Build.props
  • Loading branch information
dkarzon committed Oct 14, 2021
1 parent a94b1f3 commit 433923e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish-packages.yml
Expand Up @@ -23,20 +23,23 @@ jobs:
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/FluentEmail.Core/FluentEmail.Core.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
- name: Publish FluentEmail.Smtp
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Senders/FluentEmail.Smtp/FluentEmail.Smtp.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
- name: Publish FluentEmail.Sendgrid
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Senders/FluentEmail.SendGrid/FluentEmail.SendGrid.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
Expand All @@ -50,27 +53,31 @@ jobs:
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Senders/FluentEmail.MailKit/FluentEmail.MailKit.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
- name: Publish FluentEmail.Mailgun
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Senders/FluentEmail.Mailgun/FluentEmail.Mailgun.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
- name: Publish FluentEmail.Razor
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Renderers/FluentEmail.Razor/FluentEmail.Razor.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
- name: Publish FluentEmail.Liquid
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: src/Renderers/FluentEmail.Liquid/FluentEmail.Liquid.csproj
VERSION_FILE_PATH: src/Directory.Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
NUGET_SOURCE: https://api.nuget.org
INCLUDE_SYMBOLS: true
Expand Down

0 comments on commit 433923e

Please sign in to comment.