forked from amelbakry/kube-schedule-scaler
-
Notifications
You must be signed in to change notification settings - Fork 13
56 lines (55 loc) · 1.6 KB
/
main.yml
File metadata and controls
56 lines (55 loc) · 1.6 KB
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
name: Build and publish to public ECR
on:
workflow_dispatch: {}
schedule:
- cron: 0 9 * * 1
push:
branches:
- master
- main
- "[0-9]*"
- "v[0-9]*"
tags:
- v*
- urllib3-2.3.0
jobs:
build:
runs-on: ubuntu-24.04
if: github.repository == 'citizensadvice/kube-schedule-scaler'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract repo name
shell: bash
run: |-
echo "repo_name=$(echo ${GITHUB_REPOSITORY} | sed 's/.*\///g' | sed 's/-docker$//')" >> $GITHUB_OUTPUT
id: extract_repo_name
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v5
with:
images: public.ecr.aws/citizensadvice/${{ steps.extract_repo_name.outputs.repo_name }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha
- name: Login to AWS Elastic Container Registry
uses: docker/login-action@v3
with:
registry: public.ecr.aws
username: ${{ secrets.PUBLIC_PUSH_ECR_AWS_KEY }}
password: ${{ secrets.PUBLIC_PUSH_ECR_AWS_SECRET }}
env:
AWS_REGION: us-east-1
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
platforms: linux/amd64,linux/arm64