Skip to content

Bump elliptic from 6.5.4 to 6.6.1 in /frontend #89

Bump elliptic from 6.5.4 to 6.6.1 in /frontend

Bump elliptic from 6.5.4 to 6.6.1 in /frontend #89

Workflow file for this run

name: Docker Images CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
env:
PUSH_IMAGES: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v2
- name: Build the Docker images
run: docker-compose build
- name: Log in to the Container registry
if: ${{ env.PUSH_IMAGES == 'true' }}
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish the Docker images
if: ${{ env.PUSH_IMAGES == 'true' }}
run: docker-compose push