Add Vue 3 modal system library #13
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
name: Build and Publish to NPM | |
on: | |
push: | |
branches: | |
- main # Set a branch name to trigger deployment | |
permissions: | |
packages: write | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: 'Automated Version Bump' | |
uses: 'phips28/gh-action-bump-version@master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
version-type: 'patch' | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 # You can specify the Node.js version you need | |
- name: Install dependencies | |
run: npm install | |
- name: Build package | |
run: npm run build # Replace with your build command | |
- name: Set package.json name to wizarr-vue-modal | |
run: | | |
jq '.name = "wizarr-vue-modal"' < package.json > temp.json && mv temp.json package.json | |
- name: Publish to NPM | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
npm publish --access public | |
- name: Set package.json name to @wizarrrr/wizarr-vue-modal | |
run: | | |
jq '.name = "@wizarrrr/wizarr-vue-modal"' < package.json > temp.json && mv temp.json package.json | |
- name: Cleanup | |
run: rm .npmrc | |
- name: Publish to GitHub Packages | |
run: | | |
echo "@wizarrrr:registry=https://npm.pkg.github.com/" > .npmrc | |
npm publish --access public | |
- name: Cleanup | |
run: rm .npmrc |