Skip to content

Commit

Permalink
ci: fix variables 2nd attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
egil authored Dec 17, 2023
1 parent 747b0ca commit 1b409df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
with:
files: '["docs/site/*.md", "docs/**/*.md", "docs/**/*.tmpl.partial", "*.csproj", "**/*.csproj", "src/Directory.Build.props"]'
env:
RELEASE_VERSION: "$NBGV_SimpleVersion$NBGV_PrereleaseVersion"
RELEASE_VERSION: ${NBGV_SimpleVersion}${NBGV_PrereleaseVersion}
RELEASE_NOTES: ${{ steps.changelog_reader.outputs.changes }}

# Create the NuGet package in the folder from the environment variable NuGetDirectory
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
with:
files: '["docs/site/*.md", "docs/**/*.md", "docs/**/*.tmpl.partial", "*.csproj", "**/*.csproj", "src/Directory.Build.props"]'
env:
RELEASE_VERSION: "$NBGV_SimpleVersion$NBGV_PrereleaseVersion"
RELEASE_VERSION: ${NBGV_SimpleVersion}${NBGV_PrereleaseVersion}
RELEASE_NOTES: ${{ steps.changelog_reader.outputs.changes }}

- name: 📄 Build bUnit
Expand Down

0 comments on commit 1b409df

Please sign in to comment.