this has been broken forever (#3006)

This commit is contained in:
Rob Larsen
2023-09-05 15:28:42 -04:00
committed by GitHub
parent 0836867337
commit 7e8b7e9c03
2 changed files with 5 additions and 52 deletions

View File

@@ -1,47 +0,0 @@
name: Build dist
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
permissions:
contents: read
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
ref: main
# Runs a single command using the runners shell
- name: build
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[Bot] Update dist"
- name: Pushing to the protected branch 'main'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.API_TOKEN_GITHUB }}
branch: main

10
dist/package.json vendored
View File

@@ -15,10 +15,10 @@
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.1",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.8.0"
"html-webpack-plugin": "^5.5.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}