Skip to content

Commit

Permalink
💚 Use upload/download artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Nov 7, 2023
1 parent 11c99bb commit 64f6aab
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:
- name: 📦️ Compile assets
run: bun run build

- name: 🚚 Upload distribution files
uses: actions/upload-artifact@v2
with:
name: dist-files
path: public/static

serve:
needs: build
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -111,8 +117,14 @@ jobs:
- name: ⚡️ Optimize Stuffs
run: set -e && php artisan optimize --env=ci

- name: 🚚 Download distribution files
uses: actions/download-artifact@v2
with:
name: dist-files
path: public/static

- name: 📂 List public/
run: ls public/
run: ls public/static

- name: 🧪 Test features
run: |
Expand Down

0 comments on commit 64f6aab

Please sign in to comment.