Skip to content

Bump webpack from 5.96.1 to 5.97.0 (#1100) #1004

Bump webpack from 5.96.1 to 5.97.0 (#1100)

Bump webpack from 5.96.1 to 5.97.0 (#1100) #1004

Workflow file for this run

name: Build and Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
npm ci
- name: Build
run: |
npm run build
- name: Publish
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > .npmrc
npm publish || true
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}