Skip to content

Add Image Ecarinne Gonzalez #55

Add Image Ecarinne Gonzalez

Add Image Ecarinne Gonzalez #55

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- staging
- trying
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build the Docker image
run: docker build . --tag ghcr.io/eol-uchile/portal-eol:${GITHUB_SHA}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: eolito
password: ${{ secrets.CR_PAT }}
- name: Push to Github Container Registry
run: |
docker push ghcr.io/eol-uchile/portal-eol:${GITHUB_SHA}