fix: add reason when auto cancel reward claim (#31) #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy App | |
"on": | |
push: | |
branches: | |
- main | |
# on: | |
# pull_request: | |
# branches: | |
# - main | |
jobs: | |
tests: | |
name: Deploy Process | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.3" | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, redis | |
tools: composer:v2 | |
coverage: none | |
- name: Decrypt large secret | |
run: cp .env.example .env && ./decrypt_secret.sh | |
env: | |
LARGE_SECRET_PASSPHRASE: ${{ secrets.CRENDENTIALS_PASSPHRASE }} | |
- name: Run composer install | |
run: composer install -n --prefer-dist -o | |
- name: Decrypt large env | |
run: cp .env.prod.gpg .env.gpg && ./decrypt_env.sh | |
env: | |
LARGE_SECRET_PASSPHRASE: ${{ secrets.CRENDENTIALS_PASSPHRASE }} | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- name: Install dependencies | |
run: npm ci | |
- name: Build App | |
run: | | |
npm run build && \ | |
rm -rf ./public/.htaccess | |
- uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r deploy/app.zip ./ -x ".git/*" | |
- uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.FTP_SERVER }} | |
username: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
protocol: ${{ vars.PROTOCOL_FTP }} | |
local-dir: ./deploy/ | |
log-level: verbose | |
timeout: 60000 | |
- name: executing remote ssh commands using password | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: ${{ secrets.SSH_PORT }} | |
script: | | |
cd /home/${{ secrets.SSH_USERNAME }}/stepcash | |
rm -rf public/build | |
unzip -o app.zip -d /home/${{ secrets.SSH_USERNAME }}/stepcash/ | |
rm -rf app.zip | |
/opt/alt/php83/usr/bin/php artisan optimize | |
/opt/alt/php83/usr/bin/php artisan filament:optimize |