From ab01dfb787bea86314eb4526c7675cc1ccdb5ec7 Mon Sep 17 00:00:00 2001 From: d1snin Date: Thu, 28 Sep 2023 00:25:48 +0300 Subject: [PATCH] feat: add missing gitignore --- .github/workflows/build.yml | 22 ++++++++-------------- .gitignore | 16 +--------------- 2 files changed, 9 insertions(+), 29 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 829f8f8..51825cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,26 +30,20 @@ jobs: with: arguments: build - - name: Upload Bundle Artifact + - name: Upload Master Artifact uses: actions/upload-artifact@v3.0.0 with: - name: beam-bundle - path: "./beam-bundle/build/libs" - - - name: Upload Client Artifact - uses: actions/upload-artifact@v3.0.0 - with: - name: beam-client - path: "./beam-client/build/libs" + name: delrey-master + path: "./delrey-master/build/libs" - name: Upload Daemon Artifact uses: actions/upload-artifact@v3.0.0 with: - name: beam-daemon - path: "./beam-daemon/build/libs" + name: delrey-daemon + path: "./delrey-daemon/build/libs" - - name: Upload UI Artifact + - name: Upload Client Library Artifact uses: actions/upload-artifact@v3.0.0 with: - name: beam-ui - path: "./beam-ui/build/dist" \ No newline at end of file + name: delrey-client + path: "./delrey-client/build/libs" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 2c325d5..bd0cf95 100644 --- a/.gitignore +++ b/.gitignore @@ -36,22 +36,8 @@ out/ ### VS Code ### .vscode/ -### Environment Configuration ### +### Environment Configurations ### .env -### Generated bundle file ### -beam-bundle/src/main/resources/static/main.bundle.js - -### Grabbed Configurations ### -beam-bundle/src/main/resources/bundle.conf -beam-daemon/src/main/resources/changelog.json -beam-daemon/src/main/resources/daemon.conf - -### Grabbed Resources ### -beam-bundle/src/main/resources/static/404_light.svg -beam-bundle/src/main/resources/static/404_dark.svg -beam-bundle/src/main/resources/static/empty_space_light.svg -beam-bundle/src/main/resources/static/empty_space_dark.svg - ### Private HTTP parameters http-client.private.env.json \ No newline at end of file