Skip to content

deploy testing

deploy testing #17

name: "Deploying Rollup Data Availability"
on:
push:
branches:
- cejas/playground
env:
REGION: "us-central1"
jobs:
git-submodules-update:
name: "Sync the git submodules"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "recursive"
token: ${{ secrets.CEJAS_PERSONAL_ACCESS_TOKEN }}
- name: Login to Artifact Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGION }}-docker.pkg.dev
username: _json_key
password: ${{ secrets.CI_ROLLUP_DATA_AVAIL_SA_DEV_KEY }}
- name: Build "l1" Docker image and push to Google Artifact Registry
#id: docker-push-tagged
uses: docker/build-push-action@v4
with:
push: true
file: ./op-stack/optimism/ops-bedrock/Dockerfile.l1
tags: "us.pkg.dev/pagoda-solutions-dev/rollup-data-availability/l1:${{ github.run_attempt }}-${{ github.sha }}"
secrets: |
GIT_AUTH_TOKEN=${{ secrets.CEJAS_PERSONAL_ACCESS_TOKEN }}
# build-and-push-l1:
# name: "Build and push L1 image"
# needs: git-submodules-update
# runs-on: ubuntu-latest
#
# steps: