diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22a68fb..cb26d4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,4 +29,10 @@ jobs: skip_build: true # If the commit is tagged with a version (e.g. "v1.0.0"), # release the app after building - release: ${{ startsWith(github.ref, 'refs/tags/v') }} \ No newline at end of file + release: ${{ startsWith(github.ref, 'refs/tags/v') }} + - name: Archive production builds + uses: actions/upload-artifact@v2 + with: + name: dist folder + path: | + dist \ No newline at end of file