1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-09 14:01:15 +02:00

chore: compile dist using workflow (#75)

This commit is contained in:
Bharath KKB
2020-10-01 14:37:42 -05:00
committed by GitHub
parent 873216b074
commit 6a8c41c2e1
13 changed files with 17 additions and 53236 deletions

View File

@@ -4,8 +4,24 @@ on:
- main
name: release-please
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install
run: npm install
- name: build
run: npm run build
- name: commit
run: |-
git config --global user.name "actions-bot"
git add dist/
git diff-index --quiet HEAD || git commit -m "chore: build dist"
git pull --rebase
git push origin main
release-please-pr:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.4.0
with:
@@ -16,6 +32,7 @@ jobs:
command: release-pr
release-please-release:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.4.0
with: