Skip to content

:style: Make whole "category" card clickable in edition #43

:style: Make whole "category" card clickable in edition

:style: Make whole "category" card clickable in edition #43

Workflow file for this run

name: Build
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none
- name: Run composer install
run: composer install -n --prefer-dist
- name: Run npm install
run: yarn install
- name: Run npm build
run: yarn build
- name: Push on branch
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git config push.default current
git checkout -b release/main
git add .
git add --force public/build
git commit --reuse-message HEAD --no-verify
git push origin release/main --force
deploy:
needs: build
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Run make deploy via ssh
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.DEPLOY_SSH_HOST }}
username: ${{ secrets.DEPLOY_SSH_USERNAME }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
port: ${{ secrets.DEPLOY_SSH_PORT }}
script: ${{ secrets.DEPLOY_SSH_SCRIPT }}