Skip to content

Commit

Permalink
SP-610 - Fix pipeline (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
xaithe authored Mar 19, 2021
1 parent 3f106cb commit f3e7503
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
build:
name: 'Build & Push Containers'
runs-on: ubuntu-latest
outputs:
build_tag: ${{ steps.create_tag.outputs.new_tag }}

steps:
- name: Configure AWS Credentials
Expand Down Expand Up @@ -115,4 +117,4 @@ jobs:
uses: unfor19/install-aws-cli-action@v1
- name: Push Tag to Parameter Store
run: |
aws ssm put-parameter --name "incident-response-production-tag" --type "String" --value "${{needs.build.outputs.tag}}" --overwrite --region=eu-west-1
aws ssm put-parameter --name "incident-response-production-tag" --type "String" --value "${{ needs.build.outputs.build_tag }}" --overwrite --region=eu-west-1

0 comments on commit f3e7503

Please sign in to comment.