-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (37 loc) · 1.26 KB
/
ddn-assets.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
name: DDN Assets
on:
push:
branches:
- "main"
- "vishnu/cps-1077-build-and-push-ndc-hubdatacommit-sha-docker-images"
jobs:
generate:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate data
run: |
export NDC_HUB_GIT_REPO_FILE_PATH=$PWD
echo "NDC_HUB_GIT_REPO_FILE_PATH = $NDC_HUB_GIT_REPO_FILE_PATH"
pushd docker/data
echo "Downloading ddn-assets"
wget https://github.com/hasura/ddn-assets/releases/download/v0.1.0/ddn-assets
chmod +x ddn-assets
# TODO: get rid of this after fixing https://github.com/hasura/ddn-assets/issues/7
mkdir assets
echo "Running ddn-assets"
./ddn-assets generate
docker build -t ghcr.io/hasura/ndc-hub:data.$GITHUB_SHA .
popd
# - name: Log in to the Container registry
# uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
# with:
# registry: ${{ env.REGISTRY }}
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}