Skip to content

move modelica install after e+ install as modelica build step takes l… #32

move modelica install after e+ install as modelica build step takes l…

move modelica install after e+ install as modelica build step takes l… #32

Workflow file for this run

name: Build for Development
on:
push:
branches:
- '*'
release:
types: [released]
env:
REGISTRY: ghcr.io
jobs:
build-image:
name: Build image
runs-on: ubuntu-latest
# timeout-minutes: 40
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: docker/metadata-action@v5
id: meta
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}
tags: |
type=ref,event=branch
type=sha
type=semver,pattern={{version}},enable=${{ github.event_name == 'release' }}
type=semver,pattern={{major}},enable=${{ github.event_name == 'release' }}
type=semver,pattern={{major}}.{{minor}},enable=${{ github.event_name == 'release' }}
type=edge
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
target: alfalfa-dependencies
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.output.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max