Skip to content

Commit

Permalink
add aws ecr
Browse files Browse the repository at this point in the history
  • Loading branch information
kkkgo committed Jun 11, 2024
1 parent 9ccc19f commit ca638ab
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/docker-latest-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,21 @@ jobs:
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x
tags: sliamb/paopaodns:latest
build-args:
DEVLOG_SW=no
DEVLOG_SW=no
push-ecr:
needs: build
runs-on: ubuntu-latest
container: alpine:edge
steps:
- name: "Configure AWS Credentials"
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
aws-region: us-east-1
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: install skopeo and aws-cli
run: apk update && apk upgrade && apk add skopeo aws-cli
- name: login ecr
run: aws ecr-public get-login-password --region us-east-1 | skopeo login --username AWS --password-stdin public.ecr.aws
- name: push ecr
run: skopeo copy --all docker://sliamb/paopaodns:latest docker://public.ecr.aws/sliamb/paopaodns:latest
19 changes: 18 additions & 1 deletion .github/workflows/docker-test-amd64-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,21 @@ jobs:
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8
tags: sliamb/paopaodns:dev
build-args:
DEVLOG_SW=yes
DEVLOG_SW=yes
push-ecr:
needs: build
runs-on: ubuntu-latest
container: alpine:edge
steps:
- name: "Configure AWS Credentials"
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
aws-region: us-east-1
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: install skopeo and aws-cli
run: apk update && apk upgrade && apk add skopeo aws-cli
- name: login ecr
run: aws ecr-public get-login-password --region us-east-1 | skopeo login --username AWS --password-stdin public.ecr.aws
- name: push ecr
run: skopeo copy --all docker://sliamb/paopaodns:dev docker://public.ecr.aws/sliamb/paopaodns:dev

0 comments on commit ca638ab

Please sign in to comment.