Skip to content

ci: Set up the GitHub actions #4

ci: Set up the GitHub actions

ci: Set up the GitHub actions #4

Workflow file for this run

name: Package Release
on:
push:
branches:
- github-action
jobs:
npm-package:
name: Build and push npm package
runs-on: ubuntu-latest
permissions:
contents: write
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:
- git config --global user.email "github-actions[bot]@users.noreply.github.com"

Check failure on line 45 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Package Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 45, Col: 11): A sequence was not expected
- git config --global user.name "github-actions[bot]"
- "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 }}