This commit is contained in:
Konrad Baran 2024-08-05 04:14:41 +02:00 committed by GitHub
commit eeaf669b41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,8 @@ on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
schedule:
- cron: '0 0 * * *'
jobs:
build-unix:
@ -145,3 +147,24 @@ jobs:
yazi-*.zip
yazi-*.snap
generate_release_notes: true
nightly:
permissions:
contents: write
runs-on: ubuntu-latest
needs: [build-unix, build-windows, build-musl, build-snap]
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Nightly
uses: softprops/action-gh-release@v1
if: github.event_name == 'schedule'
with:
tag_name: "nightly"
prerelease: true
files: |
yazi-*.zip
yazi-*.snap
generate_release_notes: true