46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- .gitignore
|
|
- README.md
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
|
|
- name: Build
|
|
run: yarn build
|
|
|
|
- name: Setup .npmrc
|
|
run: |
|
|
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set git credentials
|
|
run: |
|
|
git config --global user.name 'GitHub Actions'
|
|
git config --global user.email 'actions@github.com'
|
|
git remote set-url origin "https://${{ secrets.REPO_PAT }}@github.com/AceDataCloud/Nexior"
|
|
|
|
- name: Publish
|
|
run: yarn release
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|