Update ci.yaml
This commit is contained in:
parent
bda4dc5b54
commit
bea3a2f1e5
|
@ -30,28 +30,29 @@ jobs:
|
||||||
uses: NyaMisty/theos-action@master
|
uses: NyaMisty/theos-action@master
|
||||||
|
|
||||||
- name: Get tag
|
- name: Get tag
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
||||||
id: tag
|
id: tag
|
||||||
uses: dawidd6/action-get-tag@v1
|
uses: dawidd6/action-get-tag@v1
|
||||||
|
|
||||||
- name: Build Release package - Rootful
|
- name: Build Release package - Rootful
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
||||||
run: |
|
run: |
|
||||||
cd screendumpLowFrame
|
cd screendumpLowFrame
|
||||||
make clean
|
make clean
|
||||||
TAGNAME=${{ steps.tag.outputs.tag }}
|
TAGNAME=${{ steps.tag.outputs.tag || '0.0.5' }} # Default value for manual run
|
||||||
make package FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}-rootful
|
make package FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}-rootful
|
||||||
|
|
||||||
- name: Build Release package - Rootless
|
- name: Build Release package - Rootless
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
||||||
run: |
|
run: |
|
||||||
cd screendumpLowFrame
|
cd screendumpLowFrame
|
||||||
make clean
|
make clean
|
||||||
TAGNAME=${{ steps.tag.outputs.tag }}
|
TAGNAME=${{ steps.tag.outputs.tag || '0.0.5' }} # Default value for manual run
|
||||||
make package THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}-rootless
|
make package THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}-rootless
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
${{ github.workspace }}/screendumpLowFrame/packages/*.deb
|
${{ github.workspace }}/screendumpLowFrame/packages/*.deb
|
||||||
|
|
Loading…
Reference in New Issue