diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index f4af0606..f8a3331a 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -12,20 +12,19 @@ jobs: call-build: name: "Build & Test" - needs: call-lint uses: ./.github/workflows/build.yml secrets: inherit call-staging: name: "Staging" - needs: call-build + needs: [ call-lint, call-build ] if: ${{ github.ref_name == 'develop' }} uses: ./.github/workflows/staging.yml secrets: inherit call-release: name: "Release" - needs: call-build + needs: [ call-lint, call-build ] if: ${{ github.ref_protected == true }} uses: ./.github/workflows/release.yml secrets: inherit diff --git a/package-lock.json b/package-lock.json index 81376f76..bf18eeac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -69,7 +69,7 @@ "eslint-config-typescript": "^3.0.0", "jest": "^29.5.0", "prettier": "^2.8.8", - "semantic-release": "^21.0.2", + "semantic-release": "^21.0.5", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", diff --git a/package.json b/package.json index ac2f09c6..4505011b 100644 --- a/package.json +++ b/package.json @@ -105,7 +105,7 @@ "eslint-config-typescript": "^3.0.0", "jest": "^29.5.0", "prettier": "^2.8.8", - "semantic-release": "^21.0.2", + "semantic-release": "^21.0.5", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1",