-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (48 loc) · 1.58 KB
/
pg-init.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
name: pg init container
on:
workflow_dispatch:
permissions:
# Checkout repository
contents: read
# Push container images
packages: write
jobs:
build:
runs-on: ubuntu-24.04
env:
IMAGE_NAME: gardenlinux/glvd-postgres-init
IMAGE_TAG: latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install qemu dependency for multi-arch build
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- run: |
LATEST_RUN_ID=$(gh run list --repo gardenlinux/glvd-contrib --branch main --workflow ingest-snapshot.yaml --json databaseId --limit 1 | jq -r '.[0].databaseId')
gh run download $LATEST_RUN_ID -n glvd.sql --repo gardenlinux/glvd-contrib
env:
GH_TOKEN: ${{ github.token }}
- name: Build Image
id: build_image
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_TAG }}
platforms: linux/amd64, linux/arm64
containerfiles: |
./Containerfile.pg-init
- name: Push To ghcr.io
id: push-to-ghcr
if: ${{ github.event_name != 'pull_request' }}
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build_image.outputs.image }}
tags: ${{ steps.build_image.outputs.tags }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Print image digest
if: ${{ github.event_name != 'pull_request' }}
run: echo "Image pushed to ${{ steps.push-to-ghcr.outputs.digest }}"