This file contains hidden or 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
# Use Ubuntu 22.04 as the base image | |
FROM ubuntu:22.04 | |
# Avoid prompts from apt | |
ENV DEBIAN_FRONTEND=noninteractive | |
# Set the ChromeDriver version | |
ENV CHROMEDRIVER_VERSION=114.0.5735.90 | |
# Install essential packages |
This file contains hidden or 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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Prod release | |
jobs: | |
release: | |
runs-on: ubuntu-latest |
This file contains hidden or 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: Push Docker image | |
on: | |
push: | |
branches: | |
- master | |
env: | |
PROJECT_ID: ${{ secrets.GCP_PROD_SERVICE_PROJECT_ID }} | |
IMAGE_NAME: front-end-angular-app |