Skip to content

Commit b181671

Browse files
committed
Merge branch 'main' into test-publish-npm
2 parents 62c625e + daf9257 commit b181671

File tree

8 files changed

+11
-31
lines changed

8 files changed

+11
-31
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ jobs:
1414
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1515
with:
1616
persist-credentials: false
17-
- uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6 # stable
17+
- uses: dtolnay/rust-toolchain@9a1d20035bdbcbc899baabe1e402e85bc33639bc # 1.90
18+
1819
- run: cargo install wasm-pack && wasm-pack build --release --target web

.github/workflows/publish-npm-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Setup rust
25-
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6 # stable
25+
uses: dtolnay/rust-toolchain@9a1d20035bdbcbc899baabe1e402e85bc33639bc # 1.90
2626

2727
- name: Build
2828
run: cargo install wasm-pack && wasm-pack build --release --target web --scope mdn

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
persist-credentials: false
2020

2121
- name: Setup rust
22-
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6 # stable
22+
uses: dtolnay/rust-toolchain@9a1d20035bdbcbc899baabe1e402e85bc33639bc # 1.90
2323

2424
- name: Build
2525
run: cargo install wasm-pack && wasm-pack build --release --target web --scope mdn

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

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/release-please-release.yml renamed to .github/workflows/release-please.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@ on:
44
- main
55

66
permissions:
7-
contents: write
8-
pull-requests: write
7+
contents: read
98

10-
name: release-please-release
9+
name: release-please
1110

1211
jobs:
1312
release-please:
13+
if: github.repository == 'mdn/watify'
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
1717
with:
18-
skip-github-pull-request: true
19-
repo-url: mdn/watify
20-
manifest-file: .release-please-manifest.json
18+
config-file: .github/release-please-config.json
19+
manifest-file: .github/release-please-manifest.json
2120
token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version = "1.1.5"
44
license = "MPL-2.0"
55
description = "Compile WAT to WASM with WASM 🙇"
66
authors = ["MDN Engineering Team <mdn-dev@mozilla.com>"]
7-
edition = "2021"
7+
edition = "2024"
88
resolver = "2"
99
homepage = "https://github.com/mdn/watify"
1010
repository = "git+https://github.com/mdn/watify.git"
11-
rust-version = "1.81"
11+
rust-version = "1.90"
1212

1313
[lib]
1414
crate-type = ["cdylib"]

0 commit comments

Comments
 (0)