-
Notifications
You must be signed in to change notification settings - Fork 2
95 lines (84 loc) · 3.05 KB
/
pullrequest.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
name: Pull Request
on:
pull_request:
branches:
- main
jobs:
pull_request:
env:
IMAGE_NAME: aws-sandbox-metrics
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Prepare
id: prep
run: |
DOCKER_IMAGE=${{ secrets.REGISTRY_URI }}/${{ secrets.REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/}
elif [[ $GITHUB_REF == refs/heads/* ]]; then
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
elif [[ $GITHUB_REF == refs/pull/* ]]; then
VERSION=temporary-pr-${{ github.event.number }}
fi
TAGS="${DOCKER_IMAGE}:${VERSION}"
if [ "${{ github.event_name }}" = "push" ]; then
TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
fi
echo ::set-output name=version::${VERSION}
echo ::set-output name=tags::${TAGS}
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Image Registry
uses: docker/login-action@v1
with:
registry: ${{ secrets.REGISTRY_URI }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and publish image to Quay
uses: docker/build-push-action@v2
with:
file: Containerfile.metrics
push: true
# Use the PR name
tags: ${{ steps.prep.outputs.tags }}
# images from Pull expire after 1d
labels: |
quay.expires-after=7d
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
build-and-push-api:
concurrency:
group: temporary-pr-${{ github.event.number }}
cancel-in-progress: true
uses: ./.github/workflows/build-push.yml
secrets:
registry_username: ${{ secrets.QUAY_RHPDS_SANDBOX_API_USER }}
registry_password: ${{ secrets.QUAY_RHPDS_SANDBOX_API_PASSWORD }}
with:
tag: temporary-pr-${{ github.event.number }}
image: api
labels: |-
quay.expires-after=7d
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.revision=${{ github.sha }}
build-and-push-admin:
concurrency:
group: temporary-pr-${{ github.event.number }}-admin
cancel-in-progress: true
uses: ./.github/workflows/build-push.yml
secrets:
registry_username: ${{ secrets.QUAY_RHPDS_SANDBOX_API_USER }}
registry_password: ${{ secrets.QUAY_RHPDS_SANDBOX_API_PASSWORD }}
with:
tag: temporary-pr-${{ github.event.number }}
image: admin
labels: |-
quay.expires-after=7d
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.revision=${{ github.sha }}