Process Pending Feedbacks Build, Push and Deploy to Dev #1
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
name: Process Pending Feedbacks Build and Push Docker Image | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
name: Build Image and Push to GitHub Container Registry | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
DOCKER_USERNAME: ${{ github.actor }} | |
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_USERNAME: interviewandhealth | |
IMAGE_NAME: cronjob/process-pending-feedbacks | |
IMAGE_TAG: v${{ github.run_number }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Login to Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ env.DOCKER_PASSWORD }} | |
registry: ${{ env.DOCKER_REGISTRY }} | |
- name: Build Docker Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: process-pending-feedbacks | |
push: true | |
tags: | | |
${{ env.DOCKER_REGISTRY }}/${{ env.GITHUB_USERNAME }}/${{ env.IMAGE_NAME }}:latest | |
${{ env.DOCKER_REGISTRY }}/${{ env.GITHUB_USERNAME }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} | |
${{ env.DOCKER_REGISTRY }}/${{ env.GITHUB_USERNAME }}/${{ env.IMAGE_NAME }}:${{ github.sha }} |