diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index cacc868..ab42267 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -13,7 +13,6 @@ jobs: - 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 @@ -21,4 +20,15 @@ jobs: run: npm install - name: Build VaultUI - run: npx webpack \ No newline at end of file + run: npx webpack + + - name: "Tar up the dist iles" + run: tar caf VaultUI.tar --transform="s/dist\///" dist/* LICENSE + + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Latest Build" + files: VaultUI.tar \ No newline at end of file