rusEFI LLC 2024-04-21 12:32:37 -04:00
parent 7bbf636321
commit 9345f52144
1 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,7 @@ name: Create Board Firmware
on: on:
schedule: schedule:
- cron: '10 17 * * *' # build fresh every 5:10 PM - cron: '35 16 * * *' # build fresh every 4:35 PM UTC which is often 12:35 EST
push: push:
# pull_request: # pull_request:
workflow_dispatch: workflow_dispatch:
@ -18,6 +18,9 @@ jobs:
- name: Set run variables - name: Set run variables
id: set-variables id: set-variables
run: | run: |
if [ "${{github.event_name}}" = "schedule" ]; then
echo "release_date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
fi
if [ "${{github.event_name}}" == "push" -o "${{github.event_name}}" == "schedule" -o "${{github.event_name}}" == "workflow_dispatch" ] && [ "${{github.ref}}" == "refs/heads/master" -o "${{github.ref}}" == "refs/heads/main" ]; then if [ "${{github.event_name}}" == "push" -o "${{github.event_name}}" == "schedule" -o "${{github.event_name}}" == "workflow_dispatch" ] && [ "${{github.ref}}" == "refs/heads/master" -o "${{github.ref}}" == "refs/heads/main" ]; then
echo 'push=true' >> $GITHUB_OUTPUT echo 'push=true' >> $GITHUB_OUTPUT
echo 'sim=true' >> $GITHUB_OUTPUT echo 'sim=true' >> $GITHUB_OUTPUT
@ -30,6 +33,7 @@ jobs:
with: with:
artifacts: bin srec hex list map elf bundle autoupdate artifacts: bin srec hex list map elf bundle autoupdate
uploads: ini ${{steps.set-variables.outputs.upload}} uploads: ini ${{steps.set-variables.outputs.upload}}
release_date: ${{steps.set-variables.outputs.release_date}}
push: ${{steps.set-variables.outputs.push}} push: ${{steps.set-variables.outputs.push}}
run_simulator: ${{ steps.set-variables.outputs.sim }} run_simulator: ${{ steps.set-variables.outputs.sim }}
MY_REPO_PAT: ${{secrets.MY_REPO_PAT}} MY_REPO_PAT: ${{secrets.MY_REPO_PAT}}