Skip to content

Revert "chore(python): update upstream instrumentation version" #218

Revert "chore(python): update upstream instrumentation version"

Revert "chore(python): update upstream instrumentation version" #218

name: The Coffee Bar - dotnet application builder
on:
push:
branches:
- main
pull_request:
jobs:
BuildAndPushTheCoffeeBarDotnetApps:
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Verify changes in python-the-coffee-bar-apps directory
uses: tj-actions/[email protected]
id: verify-if-files-changed
with:
files: applications/dotnet-core-the-coffee-bar-app
- name: Login to ECR Repository
run: make login
- name: Build if changes observed
if: steps.verify-if-files-changed.outputs.any_changed == 'true'
run: make build-dotnet-apps
- name: Push if changes observed
if: steps.verify-if-files-changed.outputs.any_changed == 'true'
run: make push-dotnet-apps