-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use db-client v2.0.3 * Add condition to not build on tag push * Add manual semver job as temp workaround --------- Co-authored-by: Katy Baulch <[email protected]>
- Loading branch information
1 parent
f82447b
commit 3b54d2b
Showing
4 changed files
with
400 additions
and
245 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Semver Tagging | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
env: | ||
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
jobs: | ||
tag-main-with-semver: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: eu-west-1 | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/[email protected] | ||
|
||
- name: Docker pull, retag and push | ||
run: | | ||
docker pull ${DOCKER_REGISTRY}/navigator-admin-frontend:main-${GITHUB_SHA::8} | ||
docker tag ${DOCKER_REGISTRY}/navigator-admin-frontend:main-${GITHUB_SHA::8} navigator-admin-frontend:main-${GITHUB_SHA::8} | ||
.github/retag-and-push.sh navigator-admin-frontend main-${GITHUB_SHA::8} |
Oops, something went wrong.