added auto release action
This commit is contained in:
parent
84f4d3df52
commit
c5b01fd500
2
.github/workflows/build-test.yml
vendored
2
.github/workflows/build-test.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Test is build outputs error
|
name: Test if build outputs error
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
24
.github/workflows/create-release.yml
vendored
Normal file
24
.github/workflows/create-release.yml
vendored
Normal file
@ -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
|
||||||
Loading…
x
Reference in New Issue
Block a user