From 32cadc0abf9ea623cc5f1e5aa752091579ea8ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Fern=C3=A1ndez-Capel?= Date: Thu, 14 Sep 2023 15:05:55 +0100 Subject: [PATCH] Upload dist artifacts to GitHub Actions (#1003) This adds an [upload artifact](https://github.com/actions/upload-artifact) Github action step to store the results of the build in the Github Actions workflow. This allows us to download the artifacts from the Github Actions UI. Sometimes it's useful to have the artifacts available for debugging purposes, or to test a branch in an application before merging. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e67d2cd8..d3041ba32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,3 +35,8 @@ jobs: - name: Firefox Test run: yarn test:browser --project=firefox + + - uses: actions/upload-artifact@v3 + with: + name: turbo-dist + path: dist/*