Skip to content

Update deployDev.yml #14

Update deployDev.yml

Update deployDev.yml #14

Workflow file for this run

name: Dev Deployment (dev Branch)
on:
push:
branches:
- dev
jobs:
build_docker_container:
runs-on: ubuntu-latest
environment:
name: dev
url: https://dev-onlinemat.cevi.tools
steps:
# Checkout the source code
- name: 🛎️ Checkout
uses: actions/checkout@v2
# Restores the cache if it exists.
- name: ⛏ Restore docker image from cache
uses: satackey/[email protected]
continue-on-error: true
- name: 🔐 Login to private Registry (registry.cevi.tools)
uses: docker/login-action@v2
with:
registry: registry.cevi.tools
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Load .evn file from secrets
run: echo "${{ secrets.ENV_FILE }}" > .env
- name: Set gitInfo file
run: |
echo "{\"gitBranch\": \"${GITHUB_REF#refs/heads/}\",\"gitCommitHash\": \"$(git rev-parse --short $GITHUB_SHA)}\"" > src/generatedGitInfo.json
- name: Read git infos
run: less src/generatedGitInfo.json
- name: 🏗️ Build and 🚀 push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: registry.cevi.tools/cevi/onlinemat-frontend:dev