Skip to content

Commit

Permalink
Build assets automatically (cachethq#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk authored Oct 12, 2024
1 parent 35302b8 commit 7a87a21
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/compile-assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Compile Assets

on: [push]

jobs:
compile:
name: Compile Assets
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none

- name: Install PHP dependencies
run: |
composer require "laravel/framework:11.x" --no-interaction --no-update
composer update --prefer-dist --no-interaction
- uses: actions/setup-node@v4
with:
node-version: 18

- name: Install NPM dependencies
run: npm ci

- name: Compile assets
run: npm run build

- name: Commit compiled files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Compile Assets
file_pattern: "public/build"

0 comments on commit 7a87a21

Please sign in to comment.