From d54cb6dad35bdcc1c42297ba1f2e5c8844a3c26f Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 18 Jan 2024 14:10:46 +1100 Subject: [PATCH] attempt at artifact generation --- .github/workflows/build-on-push.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-on-push.yml b/.github/workflows/build-on-push.yml index 18678c1a..c0a5fc73 100644 --- a/.github/workflows/build-on-push.yml +++ b/.github/workflows/build-on-push.yml @@ -16,3 +16,10 @@ jobs: - run: npx browserslist@latest --update-db - run: npm run build # - run: npm test + - uses: actions/upload-artifact@v4 + id: artifact-upload-step + with: + name: mavedb-ui + path: /app/dist/ + if-no-files-found: error + - run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-id }}'