Skip to content

Update release.yml to cleanup and publish to GitHub Packages #9

Update release.yml to cleanup and publish to GitHub Packages

Update release.yml to cleanup and publish to GitHub Packages #9

Workflow file for this run

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: |
sed -i 's/"name": ".*"/"name": "wizarr-vue-modal"/' 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: |
sed -i 's/"name": ".*"/"name": "@wizarrrr\/wizarr-vue-modal"/' package.json
- name: Cleanup
run: rm .npmrc
- name: Publish to GitHub Packages
run: |
echo "//npm.pkg.github.com/:__authToken={{ secrets.GITHUB_TOKEN }}" > .npmrc
npm publish --access public --registry https://npm.pkg.github.com/wizarrrr
- name: Cleanup
run: rm .npmrc