Merge pull request #165 from mynaparrot/renovate/buf.build-gen-go-buf… #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build server for release | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-server: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config-file: release-please-config.json | |
manifest-file: .release-please-manifest.json | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: | |
uses: bufbuild/buf-setup-action@v1 | |
with: | |
version: latest | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: "9" | |
- name: Build and publish | |
run: | | |
bash generate.sh | |
cd js | |
if [ ! ${{ steps.release.outputs.release_created }} ]; then | |
pnpm version prerelease --no-commit-hooks --no-git-tag-version | |
# push changes | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git commit -m "bump beta version" | |
git push | |
fi | |
bash generate.sh | |
npm config set '//registry.npmjs.org/:_authToken' $NPM_TOKEN | |
npm publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |