remove github actions workflow
This commit is contained in:
parent
7476de83a4
commit
96ca59c94c
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
|
@ -1,6 +0,0 @@
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "npm"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
37
.github/workflows/bundle.yml
vendored
37
.github/workflows/bundle.yml
vendored
|
@ -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
|
|
Loading…
Reference in a new issue