Skip to content

chore: bump @types/webpack-env from 1.18.4 to 1.18.5 (#988) #683

chore: bump @types/webpack-env from 1.18.4 to 1.18.5 (#988)

chore: bump @types/webpack-env from 1.18.4 to 1.18.5 (#988) #683

Workflow file for this run

name: publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: NPM Install
run: npm ci
- name: Build
run: npm run build:ci
- name: Publish
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_USERNAME: ${{ secrets.NPM_USERNAME }}
NPM_PASSWORD: ${{ secrets.NPM_PASSWORD }}
NPM_EMAIL: ${{ secrets.NPM_EMAIL }}