Skip to content

Merge pull request #269 from LLNL/bugfix/demSolidBCs #79

Merge pull request #269 from LLNL/bugfix/demSolidBCs

Merge pull request #269 from LLNL/bugfix/demSolidBCs #79

Workflow file for this run

name: Generate build env image
on:
push:
branches: ["develop", "task/github-actions"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: llnl/spheral
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@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build env image
run: docker build --target spheral-build-env-local --tag spheral-build-env .
- name: build spheral image
run: docker build --target spheral --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest --network none .
- name: push docker image
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest