Skip to content

Commit

Permalink
Fix/release pipeline (#208)
Browse files Browse the repository at this point in the history
## PR Checklist

Please check if your PR fulfills the following requirements:

- [x] The commit message follows our guidelines: CONTRIBUTING.md#commit
- [ ] Tests for the changes have been added (for bug fixes / features)
- [ ] Docs have been added / updated (for bug fixes / features)

## PR Type

What kind of change does this PR introduce?

<!-- Please check the one that applies to this PR using "x". -->

```
[x] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[x] Build related changes
[ ] CI related changes
[ ] Documentation content changes
[ ] Other... Please describe:
```

## What is the current behavior?

The release pipeline is not working after being upgraded.

## What is the new behavior?

The release scripts have been restored.

## Does this PR introduce a breaking change?

```
[ ] Yes
[x] No
```
  • Loading branch information
NachoVazquez authored May 28, 2024
1 parent 467a75a commit 5c8cb54
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"engines": {
"node": "18.19.0",
"npm": "Use the Yarn Classic (1.x) CLI instead of npm",
"yarn": "1.22.21"
"yarn": "1.22.22"
},
"volta": {
"node": "18.19.0",
"yarn": "1.22.21"
"yarn": "1.22.22"
},
"dependencies": {
"@angular/animations": "17.0.9",
Expand Down Expand Up @@ -58,7 +58,7 @@
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@docusaurus/module-type-aliases": "2.4.1",
"@jscutlery/semver": "4.2.0",
"@jscutlery/semver": "^5.2.0",
"@nx/angular": "17.2.0",
"@nx/cypress": "17.2.0",
"@nx/devkit": "17.2.0",
Expand Down Expand Up @@ -88,7 +88,7 @@
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.6",
"ng-packagr": "17.0.3",
"ngx-deploy-npm": "8.0.0",
"ngx-deploy-npm": "^7.1.0",
"nx": "17.2.0",
"postcss": "8.4.18",
"postcss-import": "14.1.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/ngworker/lumberjack/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
}
},
"version": {
"dependsOn": ["build"],
"executor": "@jscutlery/semver:version",
"options": {
"preset": "conventional",
Expand All @@ -84,7 +85,7 @@
"preid": "beta",
"syncVersions": false,
"commitMessageFormat": "release(${projectName}): 🎸 cut release to ${version}",
"postTargets": ["ngworker-lumberjack:build", "ngworker-lumberjack:github", "ngworker-lumberjack:publish"]
"postTargets": ["ngworker-lumberjack:github", "ngworker-lumberjack:publish"]
}
},
"github": {
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4128,10 +4128,10 @@
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"

"@jscutlery/semver@4.2.0":
version "4.2.0"
resolved "https://registry.yarnpkg.com/@jscutlery/semver/-/semver-4.2.0.tgz#72b4e4ec6201d34b2984a2e2ee01df89930f4ff7"
integrity sha512-XaExVbzoIQ5D7k9JOfdqi4IJ2CRNPyiSQu730jbcNtl+D3Ra5qOsg3HVgRtp4BoiMFNLoPsQJMiB8LeAADMfwA==
"@jscutlery/semver@^5.2.0":
version "5.2.2"
resolved "https://registry.yarnpkg.com/@jscutlery/semver/-/semver-5.2.2.tgz#5e1eec2554e38d449c2de4a6c5a41abeb3bc9d7f"
integrity sha512-lhklWnwa5X4N6aiBLbybdsZ37agtxa0EBRdXmjOFA+LzViVR6QIYZpk+/X/XLw/TB6z1rLrmFp/MakmNyaJiYg==
dependencies:
chalk "4.1.2"
conventional-changelog "^5.1.0"
Expand Down Expand Up @@ -12750,10 +12750,10 @@ [email protected]:
esbuild "^0.19.0"
rollup "^4.5.0"

ngx-deploy-npm@8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/ngx-deploy-npm/-/ngx-deploy-npm-8.0.0.tgz#8f0c72e36db443df950a043677b030500d4c117d"
integrity sha512-/sjvCYXp7fDc45uYsRwxCfJGZh82n2e7B3eazlS4jx6rE1DOvRtlbJIqptHL486iIDd63yCAQOXqeFqGvgGtRw==
ngx-deploy-npm@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/ngx-deploy-npm/-/ngx-deploy-npm-7.1.0.tgz#a3eb9f40f892cd5a9ce4a27abcc72520fde9d0dc"
integrity sha512-zUv/C9giRVrhmOu3dIG3tjjN+1/bOV5xQzPGgXBZL74M5dgZo+/Dui1JxrVCZH9m8QogR4Zg+0Xq6FeXo2xKrg==

nice-napi@^1.0.2:
version "1.0.2"
Expand Down

0 comments on commit 5c8cb54

Please sign in to comment.