mirror of
https://github.com/henry4682/linebot_finance.git
synced 2026-05-16 04:41:52 +00:00
23 lines
502 B
YAML
23 lines
502 B
YAML
name: Oracle Auto Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
redeploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Deploy to 1Panel Directory
|
|
shell: bash
|
|
run: |
|
|
echo "Checking environment..."
|
|
whoami
|
|
pwd
|
|
ls -lh /home/ubuntu/apps/linebot_finance
|
|
cd /home/ubuntu/apps/linebot_finance
|
|
docker compose up -d --build
|
|
echo "Deploy Finished!" |