Skip to content

Commit

Permalink
Switch to 'nightly' build (#67)
Browse files Browse the repository at this point in the history
* Use 'environment' for latest release deployment

* Update build.yml

* Allow to run manually

* Update build.yml
  • Loading branch information
DarkWanderer authored Dec 16, 2023
1 parent b395f4b commit 264934c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build

on:
workflow_dispatch:
schedule:
- cron: '17 3 * * *'
push:
branches: [ "main" ]
paths-ignore:
Expand Down Expand Up @@ -146,7 +149,7 @@ jobs:
name: Publish pre-release
needs: build
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
permissions:
contents: write
steps:
Expand Down

0 comments on commit 264934c

Please sign in to comment.