From 96ca59c94c2f6a2251b81ec087596fd051b9a1aa Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Fri, 7 Jan 2022 15:29:23 +0000 Subject: [PATCH] remove github actions workflow --- .github/dependabot.yml | 6 ------ .github/workflows/bundle.yml | 37 ------------------------------------ 2 files changed, 43 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/bundle.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index d1f0d08..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml deleted file mode 100644 index d46bd1c..0000000 --- a/.github/workflows/bundle.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Bundle & Release - -on: - push: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout source files - uses: actions/checkout@v2 - - - name: Install nodejs - run: curl -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -; sudo apt-get install -y nodejs - - - name: Install Build Deps - run: npm install - - - name: Build VaultUI - run: npx webpack - - - name: "Tar up the dist files" - run: tar caf VaultUI.tar --transform="s/dist\///" $(find dist -type f) LICENSE.md - - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" - prerelease: true - title: "Latest Build" - files: VaultUI.tar - - - uses: "JamesIves/github-pages-deploy-action@4.1.4" - with: - branch: gh-pages - folder: dist