-
Notifications
You must be signed in to change notification settings - Fork 8
71 lines (61 loc) · 2.3 KB
/
publish-to-ecr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Publish image to ECR
on:
workflow_dispatch:
inputs:
repository:
description: Repository environment name
default: "jobbergate-api-staging"
required: true
region:
description: AWS region to which upload the package
required: true
default: "us-west-2"
jobs:
publish:
name: Publish to ECR
runs-on: ubuntu-latest
steps:
- name: Fail if ref is not a tag
if: github.ref_type != 'tag'
run: |
echo "Publish only supported from tag refs!"
echo "Got ref_type=${{ github.ref_type }} instead"
exit 1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.5.1
- id: poetry-package-version
name: Get version of project from poetry
working-directory: jobbergate-api
run: |
echo "Poetry version is: $(poetry version --short)"
echo "::set-output name=version::$(poetry version --short)"
- name: Fail if poetry package version doesn't match tag
if: ${{ github.ref_name != steps.poetry-package-version.outputs.version }}
run: |
echo "Poetry package version doesn't match tag!"
echo "tag=${{ github.ref_name }}, version=${{ steps.poetry-package-version.outputs.version }}"
exit 1
- name: Setup AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ID }}
aws-region: ${{ github.event.inputs.region }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: ${{ github.event.inputs.repository }}
run: |
IMAGE_TAG=${{ github.ref_name }}
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG jobbergate-api
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"