Use the correct trial ID (#703) #423
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker image from main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag us-central1-docker.pkg.dev/oss-fuzz-base/testing/oss-fuzz-gen:daily | |
- name: Authenticate to gcloud | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.GCLOUD_CREDENTIAL }}' | |
- name: Set up Cloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
- name: Auth to Artifact Registry | |
run: gcloud auth configure-docker us-central1-docker.pkg.dev --quiet | |
- name: Push to Artifact Registry | |
run: docker push us-central1-docker.pkg.dev/oss-fuzz-base/testing/oss-fuzz-gen:daily |