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
7 changes: 4 additions & 3 deletions .github/workflows/branch-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,12 @@ jobs:
echo "Bundle contents:"
ls -la .sc/stacks/dist/bundle/
- name: publish preview sc binaries
shell: bash
env:
VERSION: ${{ needs.prepare.outputs.version }}
run: |-
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.
./bin/sc deploy -s dist -e prod --skip-refresh

publish-git-tag:
name: Create release commit and push git tag
Expand Down
Loading