super-release 1.13.2 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/bin/super-release-darwin-aarch64.tar.gz.sha256 +1 -1
- package/bin/super-release-darwin-x86_64.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-aarch64-musl.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-aarch64.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-x86_64-musl.tar.gz.sha256 +1 -1
- package/bin/super-release-linux-x86_64.tar.gz.sha256 +1 -1
- package/bin/super-release-windows-x86_64.zip.sha256 +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -89,6 +89,19 @@ version and rendered release notes (needs `pull-requests: write`):
|
|
|
89
89
|
GITHUB_TOKEN: ${{ github.token }}
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
+
The preview is evaluated against the PR's base branch. When PRs target an
|
|
93
|
+
integration branch (say `develop`) that is later merged into the release branch,
|
|
94
|
+
set `base` to the branch the release will actually run from:
|
|
95
|
+
|
|
96
|
+
```yaml
|
|
97
|
+
- uses: bowlingx/super-release@v1
|
|
98
|
+
with:
|
|
99
|
+
preview: true
|
|
100
|
+
base: main
|
|
101
|
+
env:
|
|
102
|
+
GITHUB_TOKEN: ${{ github.token }}
|
|
103
|
+
```
|
|
104
|
+
|
|
92
105
|
### Inputs
|
|
93
106
|
|
|
94
107
|
| Input | Default | Description |
|
|
@@ -98,6 +111,7 @@ version and rendered release notes (needs `pull-requests: write`):
|
|
|
98
111
|
| `preview` | `false` | Post/update a PR preview comment instead of releasing. |
|
|
99
112
|
| `config` | | Path to the config file (default `.release.yaml`). |
|
|
100
113
|
| `package` | | Filter to a specific package. |
|
|
114
|
+
| `base` | | Base branch for `preview` (default: the PR base). |
|
|
101
115
|
| `working-directory` | | Repository root to operate on. |
|
|
102
116
|
| `dangerously-skip-config-check` | `false` | Skip config-schema validation. |
|
|
103
117
|
| `args` | | Extra raw CLI flags (escape hatch). |
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d1fde72b5ec7a3b7824d44ee2c579097996ed3918b7896f6da27d00572217e64 super-release-darwin-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
9210e1f1c36849ee26412459abbbe16ec62ec8e091967a8a81f4af9776809fa6 super-release-darwin-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1d140a5dff345fb8501ae8f67d00cca58bea756e349894be17aacda6e680b8c7 super-release-linux-aarch64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f2d0578458c350202b329138803a82004c0bd76669420ef6dc1b2c16a2e5ff02 super-release-linux-aarch64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
612fe99a53c48da3473e5830477f211b16e7d3f2500247cb5f7bb9c370639f0a super-release-linux-x86_64-musl.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
646cc945fd4bbf02fdeec9dd0053409f6b629568bd78799257c556243faf35c4 super-release-linux-x86_64.tar.gz
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
C4143E010D152CEEE3122E8B6ED1126C5806047958C4B1EB41943E70CE30C613
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-release",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "A fast semantic-release alternative for monorepos, written in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"changelog",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"provenance": true
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"super-release-darwin-
|
|
32
|
-
"super-release-
|
|
33
|
-
"super-release-
|
|
34
|
-
"super-release-linux-x64": "1.
|
|
35
|
-
"super-release-
|
|
31
|
+
"super-release-darwin-x64": "1.12.0",
|
|
32
|
+
"super-release-darwin-arm64": "1.12.0",
|
|
33
|
+
"super-release-linux-arm64": "1.12.0",
|
|
34
|
+
"super-release-linux-x64": "1.12.0",
|
|
35
|
+
"super-release-windows-x64": "1.12.0"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=20"
|