added auto release action
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
name: Test is build outputs error
|
name: Test if build outputs error
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
name: Creates new release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: "Release"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: sudo apt update
|
||||||
|
- run: sudo apt install inkscape optipng sassc -y
|
||||||
|
- run: make
|
||||||
|
- run: (cd ./share/themes && tar -czvf Kaliish-orange.tar.gz * && mv Kaliish-orange.tar.gz ../../)
|
||||||
|
|
||||||
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
with:
|
||||||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
prerelease: false
|
||||||
|
files: |
|
||||||
|
Kaliish-orange.tar.gz
|
||||||
Reference in New Issue
Block a user