Skip to content

Commit

Permalink
Upload dist artifacts to GitHub Actions (#1003)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Alberto Fernández-Capel authored Sep 14, 2023
1 parent 191c085 commit 32cadc0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

0 comments on commit 32cadc0

Please sign in to comment.