We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369eeaf commit 53aa8c4Copy full SHA for 53aa8c4
1 file changed
.github/workflows/branch-preview.yaml
@@ -285,11 +285,12 @@ jobs:
285
echo "Bundle contents:"
286
ls -la .sc/stacks/dist/bundle/
287
- name: publish preview sc binaries
288
- shell: bash
289
env:
290
VERSION: ${{ needs.prepare.outputs.version }}
291
- run: |-
292
- bash <(curl -Ls "https://welder.simple-container.com/welder.sh") deploy -e prod --timestamps
+ run: |
+ # Deploy only the dist stack — welder deploy -e prod would also deploy
+ # the docs stack which requires docs/site/ that we don't build in preview.
293
+ ./bin/sc deploy -s dist -e prod --skip-refresh
294
295
publish-git-tag:
296
name: Create release commit and push git tag
0 commit comments