Potion/.github/workflows/deploy.yml
Hayden Hargreaves be0b580c19
Some checks failed
Deploy application with Docker / build_and_deploy (push) Failing after 16s
(FIX/TMP): Running actions in dev branch, temp.
2025-07-21 20:31:50 -07:00

30 lines
627 B
YAML

name: Deploy application with Docker
on:
push:
branches:
- master
- dev
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: azpect3120/option.gophernest:latest