forked from redhat-developer/mapt
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.36 KB
/
push-oci.yml
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
name: oci-push
on:
workflow_run:
workflows:
- oci-builds
types:
- completed
jobs:
push:
name: push
if: |
github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download mapt assets
uses: actions/download-artifact@v4
with:
name: mapt
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }}
- name: Get mapt build informaiton
run: echo "source_event=$(cat mapt-event)" >> "$GITHUB_ENV"
- name: Get mapt image name
if: ${{ env.source_event == 'pull_request' }}
run: echo "IMG=$(cat mapt-image)" >> "$GITHUB_ENV"
- name: Log in to ghcr.io
if: ${{ env.source_event == 'pull_request' }}
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in quay.io
if: ${{ env.source_event == 'push' }}
uses: redhat-actions/podman-login@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_PASSWORD }}
- name: Push mapt
run: |
make oci-load
make oci-push