Skip to content

Commit

Permalink
use db-client v2.0.3 (#94)
Browse files Browse the repository at this point in the history
* 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
diversemix and katybaulch authored Mar 6, 2024
1 parent f82447b commit 3b54d2b
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 245 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
run: make integration_test

build:
if: ${{ ! startsWith(github.ref, 'refs/tags') }}
runs-on: ubuntu-latest
needs:
- code-quality
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/semver.yml
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}
Loading

0 comments on commit 3b54d2b

Please sign in to comment.