forked from alepolidori/astproxy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian
committed
Mar 16, 2023
1 parent
ff6a1b8
commit fc58464
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | ||
|
||
name: Publish Node.js Package to NPM | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- gh-actions | ||
|
||
jobs: | ||
npm-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout source code" | ||
uses: "actions/checkout@v3" | ||
with: | ||
ref: ${{ github.ref }} | ||
persist-credentials: false | ||
|
||
- name: "Version Bump" | ||
uses: "phips28/gh-action-bump-version@master" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_USER: NethBot | ||
GITHUB_EMAIL: [email protected] | ||
with: | ||
version-type: "patch" | ||
target-branch: 'master' | ||
commit-message: "package.json: version bump to {{version}}" | ||
|
||
- name: "Publish to npm repository" | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm ci | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |