Skip to content

Commit 9e452d7

Browse files
committed
Fix scheduled prerelease skipping publish step
The prerelease build skipped the publishing step. (See https://github.com/redhat-developer/vscode-yaml/actions/runs/18187139533/job/51773763520) This should prevent the publishing step from being skipped. Signed-off-by: David Thompson <davthomp@redhat.com>
1 parent b306979 commit 9e452d7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ jobs:
108108
path: vscode-yaml-${{ env.EXT_VERSION }}-${{github.run_number}}*.vsix
109109
if-no-files-found: error
110110
- name: Publish to GH Release Tab
111-
if: ${{ inputs.publishToMarketPlace == 'true' && inputs.publishToOVSX == 'true' }}
112111
uses: "marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0"
113112
with:
114113
repo_token: "${{ secrets.GITHUB_TOKEN }}"
@@ -119,7 +118,6 @@ jobs:
119118
vscode-yaml-${{ env.EXT_VERSION }}-${{github.run_number}}*.sha256
120119
121120
release-job:
122-
if: ${{ inputs.publishToMarketPlace == 'true' || inputs.publishToOVSX == 'true' }}
123121
environment: ${{ (inputs.publishToMarketPlace == 'true' || inputs.publishToOVSX == 'true') && 'release' || 'pre-release' }}
124122
runs-on: ubuntu-latest
125123
needs: packaging-job

0 commit comments

Comments
 (0)