diff --git a/.github/workflows/swarm-monitor.yml b/.github/workflows/swarm-monitor.yml new file mode 100644 index 0000000..8063012 --- /dev/null +++ b/.github/workflows/swarm-monitor.yml @@ -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