-
Notifications
You must be signed in to change notification settings - Fork 24
37 lines (32 loc) · 1.03 KB
/
keda-k6-runner.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
name: keda-k6-runner
on:
push:
branches:
- main
paths:
- "k6-runner/**"
- "Makefile"
jobs:
generate:
name: Generate image
runs-on: ARM64
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
# Username used to log in to a Docker registry. If not set then no login will occur
username: ${{ github.repository_owner }}
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur
password: ${{ secrets.GHCR_AUTH_PAT }}
# Server address of Docker registry. If not set then will default to Docker Hub
registry: ghcr.io
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and publish Tools image
run: make push-keda-k6-runner