Skip to content

Refactor CI workflow #314

Refactor CI workflow

Refactor CI workflow #314

Workflow file for this run

---
name: Build, test and push Docker Images
on:
pull_request:
push:
branches:
- main
tags:
- "v*"
workflow_dispatch:
# https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
amd64-build:
uses: ./.github/workflows/build.yml

Check failure on line 21 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / Build, test and push Docker Images

Invalid workflow file

The workflow is not valid. In .github/workflows/docker.yml (Line: 21, Col: 15): Error from called workflow aiidalab/aiidalab-docker-stack/.github/workflows/build.yml@53d50f444dddbb4671487fb4d0ade227895ac0a6 (Line: 123, Col: 29): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
with:
architecture: amd64
runsOn: ubuntu-latest
arm-build:
uses: ./.github/workflows/build.yml
if: false
with:
architecture: arm64
runsOn: ARM64