fix: so the PR it opens is proper this time
This commit is contained in:
parent
7ea95225b2
commit
fd411c49b9
15
.github/workflows/release-please.yml
vendored
15
.github/workflows/release-please.yml
vendored
|
@ -48,57 +48,62 @@ jobs:
|
||||||
needs: pre_check
|
needs: pre_check
|
||||||
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Action (squiggle-lang)
|
- name: Release please (squiggle-lang)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
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
|
||||||
relplz-components:
|
relplz-components:
|
||||||
name: for components
|
name: for components
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: pre_check
|
needs: pre_check
|
||||||
if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
|
if: ${{ needs.pre_check.outputs.should_skip_components != 'true' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Action (components)
|
- name: Release please (components)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_TOKEN}}
|
token: ${{secrets.GITHUB_TOKEN}}
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/components
|
path: packages/components
|
||||||
|
bump-patch-for-minor-pre-major: true
|
||||||
relplz-website:
|
relplz-website:
|
||||||
name: for website
|
name: for website
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: pre_check
|
needs: pre_check
|
||||||
if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
|
if: ${{ needs.pre_check.outputs.should_skip_website != 'true' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Action (website)
|
- name: Release please (website)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_TOKEN}}
|
token: ${{secrets.GITHUB_TOKEN}}
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/website
|
path: packages/website
|
||||||
|
bump-patch-for-minor-pre-major: true
|
||||||
relplz-vscodeext:
|
relplz-vscodeext:
|
||||||
name: for vscode-ext
|
name: for vscode-ext
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: pre_check
|
needs: pre_check
|
||||||
if: ${{ needs.pre_check.outputs.should_skip_vscodeext != 'true' }}
|
if: ${{ needs.pre_check.outputs.should_skip_vscodeext != 'true' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Action (vscode-ext)
|
- name: Release please (vscode-ext)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_TOKEN}}
|
token: ${{secrets.GITHUB_TOKEN}}
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/vscode-ext
|
path: packages/vscode-ext
|
||||||
|
bump-patch-for-minor-pre-major: true
|
||||||
relplz-cl:
|
relplz-cl:
|
||||||
name: for cli
|
name: for cli
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: pre_check
|
needs: pre_check
|
||||||
if: ${{ needs.pre_check.outputs.should_skip_cli != 'true' }}
|
if: ${{ needs.pre_check.outputs.should_skip_cli != 'true' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Action (cli)
|
- name: Release please (cli)
|
||||||
uses: google-github-actions/release-please-action@v2
|
uses: google-github-actions/release-please-action@v2
|
||||||
with:
|
with:
|
||||||
token: ${{secrets.GITHUB_TOKEN}}
|
token: ${{secrets.GITHUB_TOKEN}}
|
||||||
command: manifest-pr
|
command: manifest-pr
|
||||||
path: packages/cli
|
path: packages/cli
|
||||||
|
bump-patch-for-minor-pre-major: true
|
||||||
|
|
|
@ -1 +1,7 @@
|
||||||
{}
|
{
|
||||||
|
"packages/squiggle-lang": "0.2.11",
|
||||||
|
"packages/website": "0.2.0",
|
||||||
|
"packages/components": "0.2.24",
|
||||||
|
"packages/vscode-ext": "0.3.1",
|
||||||
|
"packages/cli": "0.0.3"
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "squiggle-website",
|
"name": "squiggle-website",
|
||||||
"version": "0.0.0",
|
"version": "0.2.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user