firmware workflow schedule only for rusefi/rusefi (#5187)

This commit is contained in:
Nathan Schulte 2023-03-16 21:23:33 -05:00 committed by GitHub
parent 66e4a314e1
commit 254a79602e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ jobs:
- name: Set run condition variables
run: |
if [ "${{github.event_name}}" = "schedule" ]; then
if [ "${{github.event_name}}" = "schedule" ] && [ "${{github.repository}}" = "rusefi/rusefi" ]; then
echo "full=true" >> $GITHUB_ENV
echo "upload=release" >> $GITHUB_ENV
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@ -360,7 +360,7 @@ jobs:
- name: Set run condition variables
run: |
if [ "${{github.event_name}}" = "schedule" ]; then
if [ "${{github.event_name}}" = "schedule" ] && [ "${{github.repository}}" = "rusefi/rusefi" ]; then
echo "full=true" >> $GITHUB_ENV
echo "upload=release" >> $GITHUB_ENV
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV