forked from SEAME-pt/SEAME-Course-24-25
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add action to build and push DOCKERFILE
Triggers if changes in DOCKERFILE are merged and nightly
- Loading branch information
1 parent
f86a9db
commit 529249d
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Docker | ||
|
||
on: | ||
# 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 |