From c605b5e9a3871b2daea5cd5a50dbea656e915c17 Mon Sep 17 00:00:00 2001 From: arjad Date: Sun, 8 Jun 2025 14:13:28 +0500 Subject: [PATCH 1/2] add workflow --- .github/workflows/master.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/master.yml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 00000000..da992a1b --- /dev/null +++ b/.github/workflows/master.yml @@ -0,0 +1,20 @@ +name: MasterDeployCI +on: + push: + branches: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Create dist ZIP + run: | + cd dist + zip -r ../dist.zip . + cd .. + - name: Upload dist.zip as artifact + uses: actions/upload-artifact@v4 + with: + name: dist-zip + path: dist.zip From 153d3cee6553ab84994a3c9fec5b8fa06d4c21e5 Mon Sep 17 00:00:00 2001 From: arjad Date: Sun, 8 Jun 2025 14:30:25 +0500 Subject: [PATCH 2/2] fix workflow --- .github/workflows/webpack.yml | 32 ---------------------- src/settings/settings_components/about.jsx | 2 +- 2 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 .github/workflows/webpack.yml diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml deleted file mode 100644 index bba6bff0..00000000 --- a/.github/workflows/webpack.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: NodeJS with Webpack - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [18.x, 20.x, 22.x] - - steps: - - uses: actions/checkout@v4 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - - name: Install Dependencies - run: npm install - - - name: Debug - List all files in src/components - run: ls -R src/components - - - name: Build Project - run: npm run build diff --git a/src/settings/settings_components/about.jsx b/src/settings/settings_components/about.jsx index e4a332ad..aed348f4 100644 --- a/src/settings/settings_components/about.jsx +++ b/src/settings/settings_components/about.jsx @@ -1,5 +1,5 @@ import React from "react"; -import Contributors from "../../components/Contributors.jsx"; +import Contributors from "../../components/contributors.jsx"; const About = () => { return (