Compare commits

..

4 Commits

Author SHA1 Message Date
hackerESQ 935a5020db Merge branch 'main' of https://github.com/investbrainapp/investbrain 2026-03-15 18:24:42 -05:00
hackerESQ 0b9f7d5254 add intl to build set to satisfy filament 2026-03-15 18:24:40 -05:00
hackerESQ 6ea4b5c12a Remove swap space increase step from workflow
Removed the step to increase swap space in the build job.
2026-03-15 18:10:35 -05:00
hackerESQ d3337c7c01 Change runner to self-hosted for build job 2026-03-15 17:53:43 -05:00
2 changed files with 2 additions and 5 deletions
+1 -4
View File
@@ -8,11 +8,8 @@ on:
jobs:
build:
runs-on: ubuntu-22.04 #ubuntu-latest
runs-on: self-hosted
steps:
- name: Increase swap space
run: sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=5120 && sudo chmod 600 /var/swap.1 && sudo /sbin/mkswap /var/swap.1 && sudo /sbin/swapon /var/swap.1
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
+1 -1
View File
@@ -27,7 +27,7 @@ RUN apt-get update && apt-get upgrade -y \
# Install PHP extensions
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) gd zip
&& docker-php-ext-install -j$(nproc) gd zip intl
# Copy application files
COPY . .