Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tuonghuynh11 committed Jan 26, 2024
1 parent d0604e0 commit 9e410fc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Docker Image CI

on:
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: 'Create env file'
run: echo "${{ secrets.TWITTER.ENV.DEVELOPMENT }}" >> .env.development
- name: Build the Docker image
run: |
IMAGE_TAG=hmt1/twitter:$(date +%s)
docker build . --file Dockerfile.dev --tag $IMAGE_TAG
echo "::set-output name=image_tag::$IMAGE_TAG"
- name: Login to Docker Hub
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Push Image to Docker Hub
run: docker push ${{ steps.build.outputs.image_tag }}

0 comments on commit 9e410fc

Please sign in to comment.