From 0a5d27b529da68ea1bbaa5a74448f2aa06689dfc Mon Sep 17 00:00:00 2001 From: Matthew Thomas Date: Tue, 30 Jan 2024 22:54:35 +0000 Subject: [PATCH] fix: remove semantic release --- .github/workflows/main.yaml | 3 --- package.json | 3 --- release.config.js | 19 ------------------- 3 files changed, 25 deletions(-) delete mode 100644 release.config.js diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c5a30f5..a221464 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -22,6 +22,3 @@ jobs: - run: npm run build - run: npm run lint-check - run: npm run format-check - - run: npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index e6100ff..13fc1d7 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,6 @@ "author": "Matthew Thomas", "license": "ISC", "devDependencies": { - "@semantic-release/changelog": "^6.0.3", - "@semantic-release/git": "^10.0.1", "@types/mocha": "^10.0.3", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", @@ -36,7 +34,6 @@ "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-promise": "^6.1.1", "prettier": "^3.1.1", - "semantic-release": "^23.0.0", "typescript": "^5.2.2" } } diff --git a/release.config.js b/release.config.js deleted file mode 100644 index 89c106d..0000000 --- a/release.config.js +++ /dev/null @@ -1,19 +0,0 @@ -// release.config.js -module.exports = { - branches: ['main'], - repositoryUrl: 'https://github.com/Ma11hewThomas/wdio-ctrf-json-reporter.git', - plugins: [ - '@semantic-release/commit-analyzer', - '@semantic-release/release-notes-generator', - '@semantic-release/changelog', - [ - '@semantic-release/git', - { - assets: ['CHANGELOG.md', 'package.json'], - message: - 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}', - }, - ], - '@semantic-release/github', - ], -}