Skip to content

try to module load cmake/3.23.1 #73

try to module load cmake/3.23.1

try to module load cmake/3.23.1 #73

name: Build tutorial image
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: llnl/raja-suite-tutorial/tutorial
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build docker image
run: |

Check failure on line 34 in .github/workflows/tutorial-docker-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tutorial-docker-image.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
module load cmake/3.23.1
docker build --build-arg njobs=2 --file containers/tutorial/Dockerfile --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest .
- name: push docker image
if: github.event_name != 'pull_request'
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest