Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
Deployment-automatisierung für Matomo
  • Loading branch information
epam-vkerkhoff authored Apr 25, 2024
1 parent 7a27b7e commit 38fbc5f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docker Image CI

on:
push:
branches:
- main
workflow_dispatch:

jobs:
deploy:
runs-on: [self-hosted, deploy]
needs: build-and-push-image
steps:
- uses: actions/checkout@v2
- name: Deploy Stack
run: |
sleep 60
docker stack deploy --compose-file docker-compose.yml bbnavi-matomo

0 comments on commit 38fbc5f

Please sign in to comment.