Skip to content

63 user movie saved list #30

63 user movie saved list

63 user movie saved list #30

Workflow file for this run

name: ocelot-apigw
on:
workflow_dispatch:
push:
branches:
- dev
paths:
- SimpleServer/src/ApiGateways/Web.Bff.SimpleNetflix/OcelotApiGw/**
- .github/workflows/ocelotapigw.yml
pull_request:
branches:
- dev
paths:
- SimpleServer/src/ApiGateways/Web.Bff.SimpleNetflix/OcelotApiGw/**
- .github/workflows/ocelotapigw.yml
env:
SERVICE: ocelotapigw
IMAGE: ocelotapigw
jobs:
BuildContainersForPR_Linux:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Checkout code
uses: actions/[email protected]
- uses: ./.github/workflows/composite/build
with:
service: ${{ env.SERVICE }}
registry_endpoint: ${{ secrets.REGISTRY_ENDPOINT }}
BuildLinux:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: ./.github/workflows/composite/build-push
with:
service: ${{ env.SERVICE }}
registry_host: ${{ secrets.REGISTRY_HOST }}
registry_endpoint: ${{ secrets.REGISTRY_ENDPOINT }}
image_name: ${{ env.IMAGE }}
registry_username: ${{ secrets.USERNAME }}
registry_password: ${{ secrets.PASSWORD }}