mirror of
https://github.com/henry4682/linebot_finance.git
synced 2026-05-16 04:41:52 +00:00
17 lines
342 B
YAML
17 lines
342 B
YAML
name: Oracle-Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
redeploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Deploy
|
|
run: |
|
|
git config --global --add safe.directory /home/ubuntu/apps/linebot_finance
|
|
cd /home/ubuntu/apps/linebot_finance
|
|
git pull
|
|
docker compose up -d --build
|
|
|