Skip to content

Commit c9892d3

Browse files
authored
Fixes to create-release-pr and bump worker-build (#557)
* Fixes to create-release-pr * Bump worker-build
1 parent c6c83bb commit c9892d3

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,3 @@ jobs:
5858
title: Release v${{ steps.update_versions.outputs.version }}
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61-
- name: Trigger Pull Request Workflow
62-
env:
63-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64-
run: |
65-
gh workflow run .github/workflows/pullrequest.yml --ref releases/v${{ steps.update_versions.outputs.version }}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

worker-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
33
edition = "2018"
44
name = "worker-build"
5-
version = "0.0.10"
5+
version = "0.1.0"
66
license = "Apache-2.0"
77
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-build"
88
readme = "README.md"
@@ -18,7 +18,7 @@ flate2 = "1.0.26"
1818
tar = "0.4.38"
1919
ureq = { version = "2.6.2", features = ["tls", "gzip"] }
2020
clap= { version="4.5", features=['derive'] }
21-
worker-codegen = { path="../worker-codegen" }
21+
worker-codegen = { path="../worker-codegen", version="0.1.0" }
2222

2323
[dev-dependencies]
2424
wasm-bindgen-cli-support.workspace = true

worker-codegen/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ edition = "2018"
77
license = "Apache-2.0"
88
description = "Functions to generate Rust code from various formats such as WIT."
99

10+
[package.metadata.release]
11+
release = false
12+
1013
[lib]
1114
path = "src/lib.rs"
1215

0 commit comments

Comments
 (0)