Skip to content

Commit 4cdc73f

Browse files
committed
fix: add target option to dist host command in workflow
1 parent d873f35 commit 4cdc73f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
# but also really annoying to build CI around when it needs secrets to work right.)
7777
- id: plan
7878
run: |
79-
dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json
79+
dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0} --target=x86_64-unknown-linux-gnu', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json
8080
echo "dist ran successfully"
8181
cat plan-dist-manifest.json
8282
echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)