Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ jobs:
shell: pwsh

- name: Validate release version matches tag
if: github.event_name != 'workflow_dispatch' || inputs.mode != 'probe'
if: github.event_name == 'release'
run: |
$releaseVersion = "${{ steps.extract_version.outputs.version }}"
Expand Down Expand Up @@ -222,7 +221,6 @@ jobs:
run: echo "Trusted publishing OK — OIDC exchange succeeded for this repo + workflow.yml."

- name: Publish TimeWarp.State to NuGet
if: github.event_name != 'workflow_dispatch' || inputs.mode != 'probe'
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.mode == 'release' && inputs.confirm == 'release')
run: |
$packagePath = "./artifacts/packages/TimeWarp.State.*.nupkg"
Expand All @@ -233,7 +231,6 @@ jobs:
working-directory: ${{ github.workspace }}

- name: Publish TimeWarp.State.Plus to NuGet
if: github.event_name != 'workflow_dispatch' || inputs.mode != 'probe'
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.mode == 'release' && inputs.confirm == 'release')
run: |
$packagePath = "./artifacts/packages/TimeWarp.State.Plus.*.nupkg"
Expand All @@ -244,7 +241,6 @@ jobs:
working-directory: ${{ github.workspace }}

- name: Publish TimeWarp.State.Policies to NuGet
if: github.event_name != 'workflow_dispatch' || inputs.mode != 'probe'
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.mode == 'release' && inputs.confirm == 'release')
run: |
$packagePath = "./artifacts/packages/TimeWarp.State.Policies.*.nupkg"
Expand Down
Loading