Deploy to Dockerhub
Some checks failed
Deploy / docker (17, 3.8.5) (push) Failing after 2m21s

This commit is contained in:
Braydon 2024-06-19 22:22:34 -04:00
parent 5a7331508f
commit 9fd8f6fade

@ -30,6 +30,25 @@ jobs:
distribution: "zulu"
maven-version: ${{ matrix.maven-version }}
# # Setup Docker Buildx
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# Login to the Docker image registry
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
# Build and push the image
- name: Build and Push (Docker Image)
uses: docker/build-push-action@v6
with:
push: true
context: API
tags: rainnny/textpurify-api:latest
# Deploy to Dokku
- name: Deploy to Dokku
uses: dokku/github-action@master