Skip to content

put back publish step, but ignore error #29

put back publish step, but ignore error

put back publish step, but ignore error #29

Workflow file for this run

name: Simple-Jekyll-Search
on: [push]
jobs:
build_deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@master
with:
ref: refs/heads/master
- name: install
run: |
npm install
- name: test
run: |
npm t
# - name: start server for uat
# run: |
# npx http-server example/_site -p 4000
# - name: uat
# uses: cypress-io/github-action@v2
# with:
# record: false
# # cache-key: node-v${{ matrix.node }}-on-${{ runner.os }}-hash-${{ hashFiles('package-lock.json') }}
- name: publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}"
npm publish
continue-on-error: true