Skip to content

Merge pull request #11 from 42dotmk/fix/user-profile-update #22

Merge pull request #11 from 42dotmk/fix/user-profile-update

Merge pull request #11 from 42dotmk/fix/user-profile-update #22

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
-
name: Checkout
uses: actions/checkout@v4
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Build and push Frontend image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: ./frontend
file: ./frontend/Dockerfile
push: true
tags: ghcr.io/42dotmk/42dotmk-frontend:latest
- name: Build and push CMS image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: ./cms
file: ./cms/Dockerfile
push: true
tags: ghcr.io/42dotmk/42dotmk-cms:latest