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 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 (