Swarm Monitor
This commit is contained in:
parent
5d7240e92c
commit
d3892d5fcb
1 changed files with 23 additions and 0 deletions
23
.github/workflows/swarm-monitor.yml
vendored
Normal file
23
.github/workflows/swarm-monitor.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Git Checkout
|
||||
uses: actions/checkout@v3
|
||||
- uses: docker/login-action@v1
|
||||
name: Login to Docker Hub
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PAT }}
|
||||
- name: Bake
|
||||
uses: docker/bake-action@v2.1.0
|
||||
with:
|
||||
push: true
|
||||
files: ./swarm-monitor/docker-compose.yml
|
||||
Loading…
Reference in a new issue