Skip to content

refactor: Remove final target #7

refactor: Remove final target

refactor: Remove final target #7

name: Build Docker Images
on:
push:
branches: develop
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
OWNER: starfederation
IMAGE_NAME: ${{ github.repository }}-dev
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v4
with:
context: ./.github
file: ./Dockerfile-dev
push: true
tags: |
${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.IMAGE_NAME }}:latest
build-args: |
ENVIRONMENT=development