We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a370461 commit 541e65bCopy full SHA for 541e65b
1 file changed
.github/workflows/publish.yml
@@ -167,20 +167,9 @@ jobs:
167
env:
168
VSC_PAT: ${{ secrets.VSC_PAT }}
169
run: |
170
- DRY_RUN="false"
171
- if [[ "${{ github.event_name }}" == "workflow_dispatch" && "${{ inputs.dry_run }}" == "true" ]]; then
172
- DRY_RUN="true"
173
- fi
174
-
175
VERSION="${{ needs.validate.outputs.version }}"
176
- echo "🔍 Publish v${VERSION} (dry=${DRY_RUN})"
177
- echo "VSC_PAT is ${VSC_PAT:+set}" # Will print 'set' if present
178
179
- if [[ "$DRY_RUN" == "true" ]]; then
180
- echo "✨ Dry run - skipping actual publish"
181
- echo "status=success" >> $GITHUB_OUTPUT
182
- exit 0
183
+ echo "🔍 Publish v${VERSION}"
+ echo "VSC_PAT is ${VSC_PAT:+set}"
184
185
echo "🚀 Running vsce publish..."
186
echo "VSIX files before publish:"
0 commit comments