Skip to content

Commit

Permalink
Merge pull request #2 from lyes-s/develop
Browse files Browse the repository at this point in the history
Publish docker image to Dockerhub with GitHub Actions
  • Loading branch information
lyes-sefiane authored Mar 5, 2024
2 parents af3b7f6 + d134fd0 commit a0f0948
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,37 @@
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools
# The file was updated to include Docker job.

name: Deploy to Firebase Hosting on merge
name: Publish Docker Image to Dockerhub and Deploy Firebase Hosting on merge
'on':
push:
branches:
- main
jobs:
build_and_deploy:

# Build Docker Image and Publish it to Dockerhub.
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${{ secrets.IMAGE_TAG }}

# Deplo the static website to Firebase.
firebase_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit a0f0948

Please sign in to comment.