4 Commits

Author SHA1 Message Date
rlong 8c6be2f1e3 Merge pull request 'Add Gitea Action for deployment and optimization' (#10) from feature/gitea-action-deployment into master
Deploy to Remote Server / deploy (push) Successful in 1m42s
Reviewed-on: #10
2026-05-06 15:43:27 -04:00
rlong cee16de419 Add Gitea Action for deployment and optimization 2026-05-06 15:30:50 -04:00
rlong e4cccba942 Merge pull request 'change button color' (#9) from feature/all-searchable-selects into master
Reviewed-on: #9
2026-04-30 15:39:37 -04:00
rlong e023f68a84 change button color 2026-04-30 15:38:39 -04:00
2 changed files with 30 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
name: Deploy to Remote Server
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deploy and optimize
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.SSH_PORT || 22 }}
script: |
cd ${{ secrets.DEPLOY_PATH }}
git pull origin master
composer install --no-interaction --prefer-dist --optimize-autoloader
npm install
npm run prod
php artisan migrate --force
php artisan optimize:clear
+1 -1
View File
@@ -54,7 +54,7 @@
Login Login
</button> </button>
<a href="{{ url('auth/social/oidc') }}" class="btn btn-info"> <a href="{{ url('auth/social/oidc') }}" class="btn btn-primary">
Login with OIDC Login with OIDC
</a> </a>