mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-13 14:31:38 +02:00
fix(build): revert build to non-debug form
This commit is contained in:
38
.github/workflows/release-please.yaml
vendored
38
.github/workflows/release-please.yaml
vendored
@@ -4,26 +4,26 @@ on:
|
|||||||
- main
|
- main
|
||||||
name: release-please
|
name: release-please
|
||||||
jobs:
|
jobs:
|
||||||
#build:
|
build:
|
||||||
# runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# steps:
|
steps:
|
||||||
# - uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
# - name: install
|
- name: install
|
||||||
# run: npm install
|
run: npm install
|
||||||
# - name: build
|
- name: build
|
||||||
# run: npm run build
|
run: npm run build
|
||||||
# - name: commit
|
- name: commit
|
||||||
# run: |-
|
run: |-
|
||||||
# git config --global user.name "actions-bot"
|
git config --global user.name "actions-bot"
|
||||||
# git add dist/
|
git add dist/
|
||||||
# git diff-index --quiet HEAD || git commit -m "chore: build dist"
|
git diff-index --quiet HEAD || git commit -m "chore: build dist"
|
||||||
# git pull --rebase
|
git pull --rebase
|
||||||
# git push origin main
|
git push origin main
|
||||||
release-please-pr:
|
release-please-pr:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# needs: [build]
|
needs: [build]
|
||||||
steps:
|
steps:
|
||||||
- uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980
|
- uses: GoogleCloudPlatform/release-please-action@v2.4.2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.RELEASE_PR_TOKEN }}
|
token: ${{ secrets.RELEASE_PR_TOKEN }}
|
||||||
release-type: node
|
release-type: node
|
||||||
@@ -32,9 +32,9 @@ jobs:
|
|||||||
command: release-pr
|
command: release-pr
|
||||||
release-please-release:
|
release-please-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# needs: [build]
|
needs: [build]
|
||||||
steps:
|
steps:
|
||||||
- uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980
|
- uses: GoogleCloudPlatform/release-please-action@v2.4.2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
release-type: node
|
release-type: node
|
||||||
|
|||||||
Reference in New Issue
Block a user