docker buildx build #44
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 | |
# https://github.com/hashicorp-education/learn-terraform-github-actions/blob/main/.github/workflows/terraform-apply.yml | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
DOCKER_BUILDKIT: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
terraform: | |
name: Terraform | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
env: | |
TF_CLOUD_ORGANIZATION: rhyek | |
TF_API_TOKEN: ${{ secrets.TF_API_TOKEN }} | |
TF_WORKSPACE: 'bank-bots-dev' | |
CONFIG_DIRECTORY: './infra' | |
outputs: | |
ecr_repository_scrape_txs_url: ${{ steps.terraform-outputs.outputs.ecr_repository_scrape_txs_url }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Upload Configuration | |
uses: hashicorp/tfc-workflows-github/actions/[email protected] | |
id: apply-upload | |
with: | |
workspace: ${{ env.TF_WORKSPACE }} | |
directory: ${{ env.CONFIG_DIRECTORY }} | |
- name: Create Apply Run | |
uses: hashicorp/tfc-workflows-github/actions/[email protected] | |
id: apply-run | |
with: | |
workspace: ${{ env.TF_WORKSPACE }} | |
configuration_version: ${{ steps.apply-upload.outputs.configuration_version_id }} | |
- name: Apply | |
uses: hashicorp/tfc-workflows-github/actions/[email protected] | |
if: fromJSON(steps.apply-run.outputs.payload).data.attributes.actions.IsConfirmable | |
id: apply | |
with: | |
run: ${{ steps.apply-run.outputs.run_id }} | |
comment: 'Apply Run from GitHub Actions CI ${{ github.sha }}' | |
- uses: dnsbty/[email protected] | |
id: terraform-outputs | |
with: | |
api-token: ${{ secrets.TF_API_TOKEN }} | |
workspace-id: ws-pftgvrxWKzhd2z9z | |
outputs: | | |
ecr_repository_scrape_txs_url | |
# - name: Outputs | |
# uses: hashicorp/tfc-workflows-github/actions/[email protected] | |
# id: outputs | |
# with: | |
# workspace: ${{ env.TF_WORKSPACE }} | |
deploy-scrape-txs: | |
name: Deploy Scrape Bank Transactions | |
runs-on: ubuntu-22.04 | |
needs: terraform | |
defaults: | |
run: | |
working-directory: ./projects/scrape-txs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ vars.AWS_DEFAULT_REGION }} | |
- name: Set build params | |
run: | | |
echo "ECR_REPO_URL=${{ needs.terraform.outputs.ecr_repository_scrape_txs_url }}" >> $GITHUB_ENV | |
echo "IMAGE_TAG=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV | |
- name: Expose GitHub Runtime | |
uses: crazy-max/ghaction-github-runtime@v3 | |
- name: Build, tag, and push Docker image | |
run: ./build/build.sh | |
- name: Install Serverless | |
run: | | |
curl -o- -L https://slss.io/install | bash | |
echo "$HOME/.serverless/bin" >> $GITHUB_PATH | |
- name: Deploy with Serverless | |
run: | | |
cd ./deploy | |
serverless deploy |