Fix step id used in what-to-make outputs

This commit is contained in:
Mike Gelfand 2022-11-28 21:09:18 +00:00
parent d91b5ca674
commit 735ea201ea
No known key found for this signature in database
GPG Key ID: CC4DBBE3299B16F8
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ jobs:
make-web: ${{ steps.check-main-push.outputs.is-main-push == '1' || steps.check-diffs.outputs.web-changed == '1' }}
test-style: ${{ steps.check-main-push.outputs.is-main-push == '1' || steps.check-diffs.outputs.our-code-changed == '1' }}
steps:
- name: Check State
id: check-state
- name: Check Push to Main Branch
id: check-main-push
run: |
set -x
if [ "$GITHUB_EVENT_NAME" = 'push' ] && [ "$GITHUB_REF_NAME" = 'main' ]; then \