Fix ECR 401 Unauthorized #89
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: Build | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_YAML: false | |
VALIDATE_KUBERNETES_KUBEVAL: false | |
VALIDATE_GO: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build piggy-env | |
id: docker_piggy-env | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./piggy-env | |
file: ./piggy-env/Dockerfile | |
builder: ${{ steps.buildx.outputs.name }} | |
push: false | |
tags: ghcr.io/kongz/piggy-env:${{ github.sha }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
- name: Build piggy-webhooks | |
id: docker_piggy-webhooks | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./piggy-webhooks | |
file: ./piggy-webhooks/Dockerfile | |
builder: ${{ steps.buildx.outputs.name }} | |
push: false | |
tags: ghcr.io/kongz/piggy-webhooks:${{ github.sha }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache |