23 lines
1.1 KiB
YAML
23 lines
1.1 KiB
YAML
|
name: 公网服务发布
|
||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '*/2 * * * *' # 每2分钟执行一次
|
||
|
|
||
|
jobs:
|
||
|
Docker-Build-Push:
|
||
|
runs-on: joylink-local233
|
||
|
steps:
|
||
|
- name: 测试定时执行任务
|
||
|
run: echo "测试定时执行任务"
|
||
|
# - name: 发布到本地测试环境
|
||
|
# uses: https://gitea.joylink.club/appleboy/ssh-action@v1.0.3
|
||
|
# with:
|
||
|
# host: ${{ secrets.LOCAL_233_SSH_HOST }}
|
||
|
# port: ${{ secrets.LOCAL_233_SSH_PORT }}
|
||
|
# username: ${{ secrets.LOCAL_233_SSH_USER }}
|
||
|
# password: ${{ secrets.LOCAL_233_SSH_PASSWORD }}
|
||
|
# script: |
|
||
|
# docker rm -f rt-sim-training-service || echo "rt-sim-training-service not exist"
|
||
|
# docker pull gitea.joylink.club/joylink/rt-sim-training-service:latest
|
||
|
# docker run --name rt-sim-training-service --restart=always --network net --ip 192.168.53.3 -d -e APP_ENV=prd -p 9000:9000 -p 19000:19000 -v /usr/local/joylink/logs/rtss:/usr/local/joylink/logs/rtss gitea.joylink.club/joylink/rt-sim-training-service:latest
|