Skip to content

Commit

Permalink
chore: update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestoresende committed Feb 6, 2023
1 parent 5224f68 commit 48d664a
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/release-pr.yml

This file was deleted.

68 changes: 68 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
on:
push:
branches:
- main
name: release
jobs:
release-pr:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
token: ${{ secrets.RELEASE_PR_TOKEN }}
changelog-types: |-
[
{ "type": "feat", "section": "🔖 Features", "hidden": false },
{ "type": "fix", "section": "🐛 Bug Fixes", "hidden": false },
{ "type": "chore", "section": "🧹 Miscellaneous", "hidden": false }
]
# Format changelog, workaround for https://github.com/google-github-actions/release-please-action/issues/542
# Taken from https://github.com/remarkablemark/release-please-extra-files-demo/blob/master/.github/workflows/release-please.yml
- uses: actions/checkout@v3
if: ${{ steps.release.outputs.pr }}
with:
ref: ${{ fromJson(steps.release.outputs.pr).headBranchName }}

- name: Configure Git user
if: ${{ steps.release.outputs.pr }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git --no-pager show --name-only
- name: Format CHANGELOG.md
if: ${{ steps.release.outputs.pr }}
run: npx prettier --write CHANGELOG.md

- name: Commit and push
if: ${{ steps.release.outputs.pr }}
run: |
git add CHANGELOG.md
git commit -m 'chore: Format CHANGELOG.md with Prettier' --no-verify
git push
publish_npm:
name: Publish to npm
runs-on: ubuntu-latest
needs: [release-pr]
if: needs.release-pr.outputs.release_created
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Config npm
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to npm
run: pnpm publish --access public --no-git-checks

0 comments on commit 48d664a

Please # to comment.