Add conditional checkout for syms in build workflow

Add conditional checkout for 'syms' on push events.
This commit is contained in:
Seth Barberee
2026-09-08 11:43:53 -07:00
committed by GitHub
parent 4f8dd2844b
commit 5c435c48ff

View File

@@ -18,6 +18,13 @@ jobs:
- name: Checkout repo
uses: actions/checkout@master
- name: Checkout syms
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@master
with:
path: symbols
ref: symbols
- name: Checkout agbcc
uses: actions/checkout@master
with: