Skip to content

Commit

Permalink
ci: ignore semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
lsndr committed Dec 25, 2023
1 parent 1512b4b commit fb099bc
Show file tree
Hide file tree
Showing 4 changed files with 2,251 additions and 39 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ jobs:
check-latest: true
cache: yarn
- name: Install dependencies
run: yarn install
run: |
# Remove semantic-release because it's not compatible with Node 14
yarn remove semantic-release @semantic-release/github
yarn install
- name: Download artifacts
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -277,6 +280,8 @@ jobs:
cache: yarn
- name: Install dependencies
run: |
# Remove semantic-release because it's not compatible with Node 14
yarn remove semantic-release @semantic-release/github
yarn config set supportedArchitectures.libc "musl"
yarn install
- name: Download artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release@22 --dry-run
run: npx semantic-release --dry-run
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"pre-commit": "^1.2.2",
"prettier": "^2.8.3",
"rrule": "^2.7.2",
"semantic-release": "^22.0.12",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
Expand Down
Loading

0 comments on commit fb099bc

Please sign in to comment.