Skip to content

Commit

Permalink
Ignore -postfix parameter to PackEachExperiment if prerelease tag is …
Browse files Browse the repository at this point in the history
…not specified

This should hopefully be all we need for our release build
  • Loading branch information
michael-hawker committed Sep 7, 2023
1 parent 201a8fe commit a7354d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -165,7 +165,7 @@ jobs:
# Build All Packages
- name: pack experiments
working-directory: ./tooling/Scripts/
run: ./PackEachExperiment.ps1 -date ${{ env.VERSION_DATE }} -postfix ${{ env.VERSION_PROPERTY }}
run: ./PackEachExperiment.ps1 -date ${{ env.VERSION_DATE }}${{ env.VERSION_PROPERTY != '' && format(' -postfix {0}', env.VERSION_PROPERTY) || '' }}

# Push Pull Request Packages to our DevOps Artifacts Feed (see nuget.config)
- name: Push Pull Request Packages (if not fork)
Expand Down

0 comments on commit a7354d6

Please sign in to comment.