mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-10 06:00:11 +00:00
Create test.yml
This commit is contained in:
parent
0b4960dee7
commit
7bdcf33436
28
.github/workflows/test.yml
vendored
Normal file
28
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Build and Push to Vorvan
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 4 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- id: 'auth'
|
||||
uses: google-github-actions/auth@v1
|
||||
with:
|
||||
credentials_json: '${{ secrets.GCP_CRED_JSON }}'
|
||||
- name: Configure Google Cloud SDK
|
||||
uses: google-github-actions/setup-gcloud@v1
|
||||
- name: Configure Docker Client
|
||||
run: |-
|
||||
gcloud auth configure-docker --quiet #authenticate to gcr
|
||||
- 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
|
Loading…
Reference in New Issue
Block a user