API (.NET Core) #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy API | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "api/**" | |
- "db/**" | |
workflow_dispatch: | |
env: | |
WORKING_DIRECTORY: ./api | |
IMAGE_NAME: api | |
GITHUB_IMAGE_REPO: ghcr.io/bcgov/jasper/ | |
jobs: | |
build: | |
name: Build, Create and Push Image | |
runs-on: ubuntu-latest | |
outputs: | |
image_digest: ${{ steps.docker_push.outputs.digest }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build API codebase | |
uses: ./.github/workflows/actions/build-api | |
with: | |
working_directory: ${{ env.WORKING_DIRECTORY }} | |
- name: Log in to the GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get short SHA | |
id: short_sha | |
run: | | |
echo "::set-output name=SHORT_SHA::$(git rev-parse --short HEAD)" | |
echo "Short SHA: $SHORT_SHA" | |
- name: Build Docker Image | |
working-directory: ${{env.WORKING_DIRECTORY}}/../ | |
run: | | |
docker build --tag ${{ env.IMAGE_NAME }} -f api/Dockerfile . | |
docker tag ${{ env.IMAGE_NAME }} ${{ env.GITHUB_IMAGE_REPO }}${{ env.IMAGE_NAME }}:${{ steps.short_sha.outputs.SHORT_SHA }} | |
- name: Push Image to GCHR | |
id: docker_push | |
run: | | |
output=$(docker push ${{ env.GITHUB_IMAGE_REPO }}${{ env.IMAGE_NAME }}:${{ steps.short_sha.outputs.SHORT_SHA }}) | |
echo $output | |
digest=$(echo "$output" | grep "digest: sha256" | awk '{ print $3 }') | |
echo "digest=$digest" >> $GITHUB_OUTPUT | |
deploy2dev: | |
name: Deploy to DEV | |
needs: build | |
env: | |
ENVIRONMENT: dev | |
permissions: | |
id-token: write | |
packages: write | |
runs-on: ubuntu-latest | |
environment: dev | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy to ${{ env.ENVIRONMENT }} | |
uses: ./.github/workflows/actions/deploy-to-aws | |
with: | |
environment: ${{ env.ENVIRONMENT }} | |
aws_account: ${{ vars.AWS_ACCOUNT }} | |
region: ${{ vars.AWS_REGION }} | |
app_name: ${{ vars.APP_NAME }} | |
aws_role_arn: ${{ vars.AWS_ROLE_ARN }} | |
ghcr_token: ${{ secrets.GITHUB_TOKEN }} | |
github_image_repo: ${{ env.GITHUB_IMAGE_REPO }} | |
image_name: ${{ env.IMAGE_NAME }} | |
image_digest: ${{ needs.build.outputs.image_digest }} |