Skip to content

Publish and Deploy Image #206

Publish and Deploy Image

Publish and Deploy Image #206

Workflow file for this run

name: Publish and Deploy Image
on:
push:
branches: [ "main" ]
release:
workflow_dispatch:
env:
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
jobs:
publish:
runs-on: ubuntu-latest
outputs:
deploy_tag: ${{ steps.build.outputs.deploy_tag }}
steps:
-
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Public ECR
uses: docker/login-action@v2
with:
registry: public.ecr.aws
username: ${{ env.AWS_ACCESS_KEY_ID }}
password: ${{ env.AWS_SECRET_ACCESS_KEY }}
env:
AWS_REGION: us-east-1
-
name: Build and Publish
id: build
run: |
echo "${{ toJSON(github) }}"
SHA_TAG=$(echo ${{ github.SHA }} | head -c 12)
DEPLOY_TAG=$SHA_TAG
if [[ ${{ contains(github.event.head_commit.message, 'chore: Release') }} == 'true' ]]; then
RELEASE_TAG=$(cargo metadata --format-version=1 --no-deps | jq '.packages[0].version' | tr -d '"')
# Use the release tag to deploy, if one is available.
DEPLOY_TAG=$RELEASE_TAG
fi
# make SHA="${{ github.SHA }}" SHA_TAG="$SHA_TAG" RELEASE_TAG="$RELEASE_TAG" publish-docker
echo "Deploy tag:"
echo ${DEPLOY_TAG}
echo "deploy_tag=${DEPLOY_TAG}" >> $GITHUB_OUTPUT
deploy:
runs-on: ubuntu-latest
needs:
- publish
steps:
-
uses: actions/checkout@v3
-
name: Schedule k8s deployment
run: |
if [[ "${{ github.event_name }}" == 'release' ]]; then
if [[ "${{ github.event.release.prerelease }}" == 'true' ]]; then
DEPLOY_ENV="tnet"
el
DEPLOY_ENV="prod"
else
DEPLOY_ENV="qa"
fi
# make DEPLOY_ENV="$DEPLOY_ENV" DEPLOY_TAG=${{ needs.publish.outputs.deploy_tag }} schedule-k8s-deployment
echo "DEPLOY_ENV is $DEPLOY_ENV"