Skip to content

Merge pull request #5787 from ye-luo/adjust-ham-pool #7

Merge pull request #5787 from ye-luo/adjust-ham-pool

Merge pull request #5787 from ye-luo/adjust-ham-pool #7

Workflow file for this run

name: Build and Push QMCPACK Development Image to GHCR
on:
push:
branches:
- develop
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: tests/test_automation/containers/Dockerfile_gcc_mpi_develop_complete
push: true
tags: |
ghcr.io/qmcpack/qmcpack_complete_develop:latest
platforms: linux/amd64