Skip to content

Commit 3d30683

Browse files
fix: correct rust-guest path in release-please config and add force-deploy escape hatch (#398)
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1e3d4fe commit 3d30683

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ on:
66
push:
77
branches:
88
- main
9+
workflow_dispatch:
10+
inputs:
11+
force_cloudflare_deploy:
12+
description: 'Force publish the cloudflare deployer image (use when release tag was created but publish job was skipped)'
13+
type: boolean
14+
default: false
915

1016
permissions:
1117
contents: write
@@ -38,7 +44,7 @@ jobs:
3844

3945
publish-cloudflare-deployer-image:
4046
needs: release
41-
if: ${{ needs.release.outputs.cloudflare_resolver_release_created == 'true' }}
47+
if: ${{ needs.release.outputs.cloudflare_resolver_release_created == 'true' || inputs.force_cloudflare_deploy == true }}
4248
runs-on: ubuntu-latest
4349
permissions:
4450
contents: read

release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"changelog-path": "CHANGELOG.md",
2424
"initial-version": "0.1.0"
2525
},
26-
"rust-guest": {
26+
"wasm/rust-guest": {
2727
"path": "wasm/rust-guest",
2828
"release-type": "rust",
2929
"changelog-path": "CHANGELOG.md",

0 commit comments

Comments
 (0)