Skip to content

Evolver build Docker Image #32

Evolver build Docker Image

Evolver build Docker Image #32

Workflow file for this run

name: Evolver build Docker Image
on:
release:
types:
- published
jobs:
build-evolver:
runs-on: ubuntu-latest
steps:
- name: Build and push the Docker Image to the GitHub Container Registry
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push the Docker Image to the GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ghcr.io/jmetal/evolver:latest,ghcr.io/jmetal/evolver:${{ github.event.release.tag_name }}
build-dashboard:
needs: build-evolver
uses: ./.github/workflows/build-evolver-dashboard.yml