removed release-please from devDependencies; added skip-github-release to release-please.yml
This commit is contained in:
parent
fd411c49b9
commit
c366476cf7
31
.github/workflows/release-please.yml
vendored
31
.github/workflows/release-please.yml
vendored
|
@ -50,11 +50,26 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Release please (squiggle-lang)
|
- name: Release please (squiggle-lang)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
|
id: release
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_TOKEN}}
|
token: ${{secrets.GITHUB_TOKEN}}
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/squiggle-lang
|
path: packages/squiggle-lang
|
||||||
bump-patch-for-minor-pre-major: true
|
bump-patch-for-minor-pre-major: true
|
||||||
|
skip-github-release: true
|
||||||
|
# - name: Publish: Checkout source
|
||||||
|
# uses: actions/checkout@v2
|
||||||
|
# # these if statements ensure that a publication only occurs when
|
||||||
|
# # a new release is created:
|
||||||
|
# if: ${{ steps.release.outputs.release_created }}
|
||||||
|
# - name: Publish: Install dependencies
|
||||||
|
# run: yarn
|
||||||
|
# if: ${{ steps.release.outputs.release_created }}
|
||||||
|
# - name: Publish
|
||||||
|
# run: cd packages/squiggle-lang && yarn publish
|
||||||
|
# env:
|
||||||
|
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||||
|
# if: ${{ steps.release.outputs.release_created }}
|
||||||
relplz-components:
|
relplz-components:
|
||||||
name: for components
|
name: for components
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -68,6 +83,19 @@ jobs:
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/components
|
path: packages/components
|
||||||
bump-patch-for-minor-pre-major: true
|
bump-patch-for-minor-pre-major: true
|
||||||
|
skip-github-release: true
|
||||||
|
# - name: Publish: Checkout source
|
||||||
|
# uses: actions/checkout@v2
|
||||||
|
# # these if statements ensure that a publication only occurs when
|
||||||
|
# # a new release is created:
|
||||||
|
# if: ${{ steps.release.outputs.release_created }}
|
||||||
|
# - name: Publish: Install dependencies
|
||||||
|
# run: yarn
|
||||||
|
# if: ${{ steps.release.outputs.release_created }}
|
||||||
|
# - name: Publish
|
||||||
|
# run: cd packages/components && yarn publish
|
||||||
|
# env:
|
||||||
|
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||||
relplz-website:
|
relplz-website:
|
||||||
name: for website
|
name: for website
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -81,6 +109,7 @@ jobs:
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/website
|
path: packages/website
|
||||||
bump-patch-for-minor-pre-major: true
|
bump-patch-for-minor-pre-major: true
|
||||||
|
skip-github-release: true
|
||||||
relplz-vscodeext:
|
relplz-vscodeext:
|
||||||
name: for vscode-ext
|
name: for vscode-ext
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -94,6 +123,7 @@ jobs:
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/vscode-ext
|
path: packages/vscode-ext
|
||||||
bump-patch-for-minor-pre-major: true
|
bump-patch-for-minor-pre-major: true
|
||||||
|
skip-github-release: true
|
||||||
relplz-cl:
|
relplz-cl:
|
||||||
name: for cli
|
name: for cli
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -107,3 +137,4 @@ jobs:
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/cli
|
path: packages/cli
|
||||||
bump-patch-for-minor-pre-major: true
|
bump-patch-for-minor-pre-major: true
|
||||||
|
skip-github-release: true
|
||||||
|
|
|
@ -7,8 +7,7 @@
|
||||||
"lint:all": "prettier --check . && cd packages/squiggle-lang && yarn lint:rescript"
|
"lint:all": "prettier --check . && cd packages/squiggle-lang && yarn lint:rescript"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.7.1"
|
||||||
"release-please": "^13.19.6"
|
|
||||||
},
|
},
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/*"
|
"packages/*"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user