Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • semantic-release/bzlmod
1 result
Show changes
## [1.0.3](https://git.gitlab.arm.com/semantic-release/bzlmod/compare/v1.0.2...v1.0.3) (2023-11-15)
### Bug Fixes
- log archive output
([fbcefb0](https://git.gitlab.arm.com/semantic-release/bzlmod/commit/fbcefb0ac05c2ce8a9a58c572d1d2cd858562217))
## [1.0.2](https://git.gitlab.arm.com/semantic-release/bzlmod/compare/v1.0.1...v1.0.2) (2023-11-07)
### Bug Fixes
......
......@@ -78,9 +78,9 @@ plugins:
- path: source.json
type: package
filepath: /modules/${env.CI_PROJECT_NAME}/${nextRelease.version}/source.json
- path: ${CI_PROJECT_NAME}-v${version}.tar.gz
- path: ${env.CI_PROJECT_NAME}-v${nextRelease.version}.tar.gz
type: package
filepath: /${CI_PROJECT_NAME}-v${version}.tar.gz
filepath: /${env.CI_PROJECT_NAME}-v${nextRelease.version}.tar.gz
```
`bzlmod` can then be pointed directly at the GitLab release to use the project. This negates the need to upload all released versions to a `bzlmod` registry.
......
{
"private": true,
"name": "@semantic-release/bzlmod",
"version": "1.0.2",
"version": "1.0.3",
"description": "A `semantic release` plugin for bzlmod",
"exports": {
"import": "./plugin.mjs",
......
......@@ -188,6 +188,7 @@ export async function prepare(pluginConfig, context) {
const compression = COMPRESSION[extension(archive)]();
await pipeline(process.stdout, compression, hasher, createWriteStream(archive));
const integrity = await promise;
logger.success('Wrote `%s` (`%s`)', archive, integrity);
const src = {
url: `${url}`,
......