Merge pull request #23 from FoamyGuy/working_on_stuff_again
Some checks failed
Validate Build / validate-build (push) Has been cancelled
Some checks failed
Validate Build / validate-build (push) Has been cancelled
fix output variable. rename to use underscores
This commit is contained in:
commit
9f58e6b912
1 changed files with 4 additions and 3 deletions
7
.github/workflows/daily_release_check.yml
vendored
7
.github/workflows/daily_release_check.yml
vendored
|
|
@ -10,7 +10,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
release-check:
|
||||
release_check:
|
||||
if: github.repository_owner == 'adafruit'
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
|
|
@ -41,8 +41,9 @@ jobs:
|
|||
run: |
|
||||
python release_updater.py make_release
|
||||
|
||||
upload-release-assets:
|
||||
if: github.repository_owner == 'adafruit' && needs.release-check.outputs.release_created == 'true'
|
||||
upload_release_assets:
|
||||
needs: release_check
|
||||
if: github.repository_owner == 'adafruit' && needs.release_check.outputs.release_created == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up requested Python version
|
||||
|
|
|
|||
Loading…
Reference in a new issue