make examples more verbose #29
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: Release | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 19 | |
cache: "pnpm" | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build | |
- name: "Find Version in package.json" | |
id: version | |
run: | | |
echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV | |
- name: "Create Release" | |
if: "startsWith(github.event.head_commit.message, 'release: ')" | |
run: | | |
gh release create "v${{ env.VERSION }}" ./dist/*.js \ | |
--title "v${{ env.VERSION }}" \ | |
--generate-notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: ${{ env.VERSION }} | |
- name: "Publish to NPM" | |
if: "startsWith(github.event.head_commit.message, 'release: ')" | |
run: | | |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | |
pnpm publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |