ci: create streamlit_version #1
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: 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 }} |