-
Notifications
You must be signed in to change notification settings - Fork 4
25 lines (25 loc) · 858 Bytes
/
release.yaml
File metadata and controls
25 lines (25 loc) · 858 Bytes
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
---
name: "Release"
on: # yamllint disable-line rule:truthy
push:
tags:
- "v*"
jobs:
docker:
name: "Publish Container Image"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "battila7/get-version-action@v2"
id: "get_version"
- uses: "authzed/actions/docker-login@main"
- uses: "authzed/actions/docker-build@main"
with:
push: "true"
tags: |
authzed/prom-authzed-proxy:latest
authzed/prom-authzed-proxy:${{ steps.get_version.outputs.version }}
ghcr.io/authzed/prom-authzed-proxy:latest
ghcr.io/authzed/prom-authzed-proxy:${{ steps.get_version.outputs.version }}
quay.io/authzed/prom-authzed-proxy:latest
quay.io/authzed/prom-authzed-proxy:${{ steps.get_version.outputs.version }}