Skip to content

Commit

Permalink
ci: Set up the GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rpf3 committed May 1, 2024
1 parent 25985f9 commit a80b62c
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Package Release

on:
push:
branches:
- github-action

jobs:
npm-package:
name: Build and push npm package
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: 5.x

- name: Calculate the build version
id: gitversion
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true

- name: Install and configure Node.js
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: true

- name: Increment package version
run: "npm version ${{ steps.gitversion.outputs.semver }} -m 'chore: Bump package version'"

- name: Build
run: pnpm build

- name: Package
run: pnpm package

- name: Publish
run: npm publish --dry-run --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit a80b62c

Please sign in to comment.