File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 steps :
2121 - uses : actions/checkout@v4
2222
23- - name : Log in to Docker Hub
24- uses : docker/login-action@v3
25- with :
26- username : ${{ secrets.DOCKERHUB_USERNAME }}
27- password : ${{ secrets.DOCKERHUB_TOKEN }}
28-
2923 - name : Log in to GHCR
3024 uses : docker/login-action@v3
3125 with :
@@ -38,14 +32,12 @@ jobs:
3832 uses : docker/metadata-action@v5
3933 with :
4034 images : |
41- ${{ vars.DOCKER_ORG }}/ecs-deploy # the name needs to be static "ecs-deploy"
4235 ghcr.io/${{ github.repository_owner }}/ecs-deploy
4336 tags : |
4437 type=ref,event=branch
4538 type=semver,pattern={{version}}
4639 type=semver,pattern={{major.minor}}
4740
48-
4941 - name : Build and push Docker image
5042 uses : docker/build-push-action@v5
5143 with :
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ This script uses the Task Definition and Service entities in Amazon's ECS to ins
1010"feature complete" and will generally only consider PRs if they are bugfixes or
1111are to add support for new AWS CLI features.
1212
13+ __ We have migrated the container image to GHCR.__
14+
1315## Usage
1416
1517 One of the following is required:
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- apk add bats --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community/ --allow-untrusted
3+ apk add bats --update-cache
44
55bats test.bats
You can’t perform that action at this time.
0 commit comments