From cd6abaf84be4700823273f9e8358f8cd97b2b4d6 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 17 Oct 2022 02:42:35 -0700 Subject: [PATCH] CI: automate updating of mach-examples Signed-off-by: Stephen Gutekanst --- .github/workflows/update_examples.yml | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/update_examples.yml diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml new file mode 100644 index 00000000..deba6645 --- /dev/null +++ b/.github/workflows/update_examples.yml @@ -0,0 +1,33 @@ +name: Update examples +on: + workflow_run: + workflows: ["CI"] + types: + - completed +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +jobs: + publish: + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Checkout hexops/mach-examples repo + uses: actions/checkout@v2 + with: + repository: hexops/mach-examples + token: ${{ secrets.HEXOPS_MACH_GPU_DAWN_PUSH }} + - name: 'mach-examples: update mach submodule' + run: | + cd libs/mach + git pull + cd ../../ + - name: 'gpu/dawn: use latest binary release' + run: | + git config user.name 'Release automation' + git config user.email 'stephen@hexops.com' + git add . + git commit -m 'libs: mach: update to latest main revision' + git push -u origin HEAD