Skip to content

Commit

Permalink
Merge pull request #79 from manchenkoff/46-ci-setup-publish-workflow
Browse files Browse the repository at this point in the history
feat: added publish workflow
  • Loading branch information
manchenkoff authored Apr 20, 2024
2 parents 0397aa5 + 3c8baef commit 49c0c8c
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Publish package to NPM

env:
node_version: 20.x
package_manager: yarn # or npm
install_command: yarn install # or npm ci
script_command: yarn # or npm run
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

on:
workflow_dispatch: # manual trigger

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
cache: ${{ env.package_manager }}

- name: Install dependencies
run: ${{ env.install_command }}

- name: Validate package
run: ${{ env.script_command }} validate

- name: Build package
run: ${{ env.script_command }} prepack

- name: Generate changelog
run: |
git config --global user.name "changelog_action"
git config --global user.email "[email protected]"
${{ env.script_command }} changelogen --release --push --publish
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
"vue-tsc": "^1.8.26"
},
"packageManager": "[email protected]"
}
}

0 comments on commit 49c0c8c

Please sign in to comment.