Skip to content

Commit

Permalink
add release & publish ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eimrek committed Mar 19, 2024
1 parent 434e52c commit ad5f56e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Release and publish

on:
push:
tags:
- "v*"

jobs:
release_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
registry-url: "https://registry.npmjs.org/"

- name: Install project dependencies
run: npm clean-install

- name: Build the dist folder
run: npm run build

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false

- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,12 @@ which will create a `.tgz` file that can then be installed by the external appli
```
npm install /path/to/package-x.y.z.tgz
```

### Publishing a new version

To make a new version and publish to npm via GitHub Actions:

```bash
npm version <patch/minor/major>
git push --follow-tags
```

0 comments on commit ad5f56e

Please sign in to comment.