Add deploy pipeline
All checks were successful
Deploy application / deploy (push) Successful in 1m26s
All checks were successful
Deploy application / deploy (push) Successful in 1m26s
This commit is contained in:
14
.gitea/workflows/deploy.yml
Normal file
14
.gitea/workflows/deploy.yml
Normal file
@ -0,0 +1,14 @@
|
||||
name: Deploy application
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: host
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Run docker-compose
|
||||
run: docker compose up -d --build
|
Reference in New Issue
Block a user