Skip to content

Human readable output for JSON formatted log files #3

Human readable output for JSON formatted log files

Human readable output for JSON formatted log files #3

Workflow file for this run

name: Run Shared Build Workflow
on:
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
environment: foobar
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: See which repo we just cloned
if: ${{ vars.pipeline_debug == 'true' }}
run: ls -lha
shell: bash
- uses: jabez007/aws-kubectl/.github/shared/docker@master
with:
tag: ${{ vars.AWS_REGION }}_${{ vars.EKS_CLUSTER }}
build-args: |
AWS_REGION=${{ vars.AWS_REGION }}
EKS_CLUSTER=${{ vars.EKS_CLUSTER }}
debug: ${{ vars.pipeline_debug }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}