Enhance act_runner setup with jq installation verification and systemd service configuration
All checks were successful
Deploy ACT Runner Installer / deploy (push) Successful in 24s
All checks were successful
Deploy ACT Runner Installer / deploy (push) Successful in 24s
This commit is contained in:
21
.gitea/workflows/deploy.yml
Normal file
21
.gitea/workflows/deploy.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Deploy ACT Runner Installer
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: debian-12-host
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup and deploy
|
||||
run: |
|
||||
mkdir -p ${{ env.HOME }}/${{ gitea.repository }}
|
||||
cp -r . ${{ env.HOME }}/${{ gitea.repository }}
|
||||
cd ${{ env.HOME }}/${{ gitea.repository }}
|
||||
docker compose down --remove-orphans
|
||||
docker compose up -d --build --force-recreate
|
||||
Reference in New Issue
Block a user