From 9d9b193dd6ba7c222d6756ccbc289112ede64572 Mon Sep 17 00:00:00 2001 From: Dan Birman Date: Wed, 1 Nov 2023 11:17:25 -0700 Subject: [PATCH] feat: testing updating urchin-examples submodule automatically --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aec29ae..ef77098 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,23 @@ on: jobs: + update-submodule: + name: Update urchin-examples + + runs-on: ubuntu-latest + + steps: + - name: Checkout main branch + uses: actions/checkout@v2 + with: + ref: main # Make sure to use your main branch name here + + - name: Update Submodule + run: | + git submodule update --init --recursive + git submodule update --remote --recursive + working-directory: source/urchin/tutorials/urchin-examples # Replace with the actual path to your submodule + build: name: Build