diff --git a/.github/workflows/build-dist.yaml b/.github/workflows/build-dist.yaml deleted file mode 100644 index b50a7581..00000000 --- a/.github/workflows/build-dist.yaml +++ /dev/null @@ -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 diff --git a/dist/package.json b/dist/package.json index 27727f6e..5353ddfd 100644 --- a/dist/package.json +++ b/dist/package.json @@ -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" } }