1
0
Fork 0

Add auto releases to github actions.

This commit is contained in:
Kitteh 2021-04-15 13:24:26 +01:00
parent 0e8d37fd92
commit e3fb1be8cf

View file

@ -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
@ -22,3 +21,14 @@ jobs:
- name: Build VaultUI
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