Skip to content

Build and Deploy

Build and Deploy #29

Workflow file for this run

name: Build and Deploy
on:
workflow_dispatch:
inputs:
image-name:
description: "Image name"
required: true
type: choice
options:
- ziyo-fe
- ziyo-be
env:
REPOSITORY_NAME: "masnormen"
IMAGE_NAME: ${{ github.event.inputs.image-name }}
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.11.0'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push container image
run: pnpm nx container ${{ env.IMAGE_NAME }}