File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,20 @@ jobs:
9292 run : cp -r artifacts/build artifacts/Licensing
9393 if : ${{ github.ref_name == 'dev' || github.ref_name == 'future' || (startsWith(github.ref, 'refs/tags/v')) }}
9494
95- - name : π¦ Create Packages and π deliver
95+ - name : π¦ Create Packages and π deliver to NuGet
96+ run : |
97+ .\set-version.ps1 -RefName ${{ github.ref_name }} -IsTag ${{ github.ref_type == 'tag' && 1 || 0 }} -BuildNumber ${{ github.run_number }} -CommitHash ${{ github.sha }}
98+ .\pack-publish.ps1 -NugetApiKey ${{ secrets.NUGET_TOKEN }} -PackageTarget ${{ needs.Variables.outputs.MORYX_PACKAGE_TARGET }}
99+ shell : pwsh
100+ if : ${{ startsWith(github.ref, 'refs/tags/v') }}
101+
102+
103+ - name : π¦ Create Packages and π deliver to MyGet
96104 run : |
97105 .\set-version.ps1 -RefName ${{ github.ref_name }} -IsTag ${{ github.ref_type == 'tag' && 1 || 0 }} -BuildNumber ${{ github.run_number }} -CommitHash ${{ github.sha }}
98106 .\pack-publish.ps1 -NugetApiKey ${{ secrets.MYGET_TOKEN }} -PackageTarget ${{ needs.Variables.outputs.MORYX_PACKAGE_TARGET }}
99107 shell : pwsh
100- if : ${{ github.ref_name == 'dev' || github.ref_name == 'future' || (startsWith(github.ref, 'refs/tags/v')) }}
108+ if : ${{ github.ref_name == 'dev' || github.ref_name == 'future' }}
101109
102110 - name : β¬οΈ Upload build artifacts
103111 uses : actions/upload-artifact@v4
You canβt perform that action at this time.
0 commit comments