Try Gitea Releases
This commit is contained in:
parent
da9edee160
commit
7a5fef7024
@ -1,6 +1,11 @@
|
|||||||
name: 'Build'
|
name: 'Build'
|
||||||
|
|
||||||
on: push
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -25,4 +30,11 @@ jobs:
|
|||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: ./out/**/*.AppImage
|
path: ./out/**/*.AppImage*
|
||||||
|
- name: Create Release
|
||||||
|
uses: https://gitea.com/actions/release-action@main
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: ./out/**/*.AppImage*
|
||||||
|
api_key: ${{ secrets.RELEASE_TOKEN }}
|
||||||
|
draft: true
|
||||||
|
Loading…
Reference in New Issue
Block a user