Skip to content

Commit

Permalink
ci: add action to build and push DOCKERFILE
Browse files Browse the repository at this point in the history
Triggers if changes in DOCKERFILE are merged and nightly
  • Loading branch information
danctorres committed Jan 23, 2025
1 parent f86a9db commit 529249d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Docker

on:

Check warning on line 4 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / yaml

4:1 [truthy] truthy value should be one of [false, true]
# Schedule: Run at 00:00 AM UTC
schedule:
- cron: '00 00 * * *'

# Trigger on push to the main branch when the Dockerfile changes
push:
branches:
- main
paths:
- 'Dockerfile'

jobs:
build_and_push:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
push: true
tags: t4seame/app:latest

- name: Logout from Docker Hub
run: docker logout

0 comments on commit 529249d

Please sign in to comment.