-
Notifications
You must be signed in to change notification settings - Fork 417
43 lines (40 loc) · 1.31 KB
/
build-and-push-nightly.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
name: Build and Push to Vorvan - Nightly
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
permissions:
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: 'projects/135982812994/locations/global/workloadIdentityPools/cicd-tooling/providers/github-actions'
service_account: '[email protected]'
- name: Configure Google Cloud SDK
uses: google-github-actions/setup-gcloud@v2
- name: Configure Docker Client
run: |-
gcloud auth configure-docker --quiet # authenticate to gcr
- name: Clean Docker images
run: |-
echo "Available storage before cleaning:"
df -h
docker system prune --all --force
echo "Available storage:"
df -h
echo "Removing dotnet"
sudo rm -rf /usr/share/dotnet
echo "Available storage:"
df -h
- name: Docker Build Image
run: |-
docker build -t gcr.io/$GCLOUD_PROJECT/h2oai/h2o-llmstudio:nightly .
- name: Push to Vorvan
run: |-
docker push gcr.io/$GCLOUD_PROJECT/h2oai/h2o-llmstudio:nightly