Skip to content

ci: create streamlit_version #1

ci: create streamlit_version

ci: create streamlit_version #1

Workflow file for this run

name: Streamlit build and push Dockerimage
on:
push:
branches:
- master
paths:
- "apps/legacy_app/streamlit_version"
env:
DOCKER_REGISTRY_HOST: europe-west1-docker.pkg.dev
GCP_PROJECT: carmine-api-381920
jobs:
release:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Auth Google Cloud SDK
uses: google-github-actions/auth@v2
with:
project_id: carmine-api-381920
credentials_json: ${{ secrets.GCP_SA_KEY }}
- name: Set up Google Cloud SDK
uses: google-github-actions/setup-gcloud@v2
with:
project_id: carmine-api-381920
- name: Configure Docker to use gcloud as a credential helper
run: |
gcloud auth configure-docker $DOCKER_REGISTRY_HOST
- name: Build Docker image
id: build
run: |
cd ./apps/legacy_app
VERSION=$(cat streamlit_version)
echo "VERSION=$VERSION" >> $GITHUB_ENV
docker build -t $DOCKER_REGISTRY_HOST/$GCP_PROJECT/docker-repository/derisk-starknet-fe:$VERSION .
- name: Push Docker image
run: |
docker push $DOCKER_REGISTRY_HOST/$GCP_PROJECT/docker-repository/derisk-starknet-fe:${{ env.VERSION }}