forked from openshift/prometheus-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1019 Bytes
/
publish.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
name: publish
on:
workflow_dispatch:
push:
branches:
- 'release-*'
- 'master'
- 'main'
tags:
- 'v*'
- '!pkg*'
jobs:
publish:
runs-on: ubuntu-latest
name: Publish container images
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '${{ env.golang-version }}'
- name: login to quay.io
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.quay_username }}
password: ${{ secrets.quay_password }}
- name: login to ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build images and push
run: ./scripts/push-docker-image.sh