From 14a23352a25bad05bbcb89bb72d11d50f5c272eb Mon Sep 17 00:00:00 2001 From: Vincent Fazio Date: Mon, 22 Jul 2024 14:28:19 +1000 Subject: [PATCH] Build action - upload outputs as artifacts --- .github/workflows/build-models.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-models.yml b/.github/workflows/build-models.yml index 350ebe2..9462db4 100644 --- a/.github/workflows/build-models.yml +++ b/.github/workflows/build-models.yml @@ -60,5 +60,11 @@ jobs: eval $(pdm venv activate) cd web_build/ ./batch_proc.py --model_name=${{matrix.model_name}} + - name: Upload output + - uses: actions/upload-artifact@v4 + with: + name: geomodels-${{matrix.model_name}} + path: geomodels/ + if-no-files-found: error