Deploy Nightly #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Nightly | |
on: | |
# This can be used to automatically publish nightlies at UTC nighttime | |
schedule: | |
- cron: '0 2 * * *' # run at 2 AM UTC | |
# This can be used to allow manually triggering nightlies from the web interface | |
workflow_dispatch: | |
jobs: | |
prep: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Version | |
run: | | |
VERSION=`date +%y%m%d0` | |
sed -i -r -e "s/#define VERSION .+/#define VERSION $VERSION/" wled00/wled.h | |
wled_build: | |
needs: prep | |
uses: ./.github/workflows/build.yml | |
nightly: | |
name: Deploy nightly | |
runs-on: ubuntu-latest | |
needs: wled_build | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- name: Show Files | |
run: ls -la | |
- name: "✏️ Generate release changelog" | |
id: changelog | |
uses: janheinrichmerker/action-github-changelog-generator@v2.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
sinceTag: v0.15.0 | |
- name: Update Nightly Release | |
uses: andelf/nightly-release@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: nightly | |
name: 'Nightly Release $$' | |
prerelease: true | |
body: ${{ steps.changelog.outputs.changelog }} | |
files: | | |
./*.bin |