diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa125be..96e052c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,12 @@ jobs: - name: ๐Ÿ“ฆ๏ธ Compile assets run: bun run build + - name: ๐Ÿšš Upload distribution files + uses: actions/upload-artifact@v3 + with: + name: dist-files + path: public/static + serve: needs: build runs-on: ${{ matrix.os }} @@ -111,8 +117,14 @@ jobs: - name: โšก๏ธ Optimize Stuffs run: set -e && php artisan optimize --env=ci + - name: ๐Ÿšš Download distribution files + uses: actions/download-artifact@v3 + with: + name: dist-files + path: public/static + - name: ๐Ÿ“‚ List public/ - run: ls public/ + run: ls public/static - name: ๐Ÿงช Test features run: |