From 58eb4ed5b291177a9c84ebcca179ed11cdf41583 Mon Sep 17 00:00:00 2001 From: egluckthaler Date: Mon, 18 Dec 2023 15:03:20 -0600 Subject: [PATCH] update apptainer_build.yml --- .github/workflows/apptainer_build.yml | 7 +++++-- .github/workflows/conda_build.yml | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/apptainer_build.yml b/.github/workflows/apptainer_build.yml index e006135..e89c099 100644 --- a/.github/workflows/apptainer_build.yml +++ b/.github/workflows/apptainer_build.yml @@ -1,4 +1,4 @@ -name: Build and Push Apptainer Image +name: starfish apptainer build and push on: push: @@ -6,7 +6,7 @@ on: - main # or any other branch you want to trigger the workflow jobs: - build-and-push: + apptainer-build-and-push: runs-on: ubuntu-latest steps: - name: Checkout Repository @@ -26,6 +26,9 @@ jobs: ./mconfig && \ make -C ./builddir && \ sudo make -C ./builddir install + + # Go back to the root of the repository and build .sif + cd .. apptainer build starfish.sif apptainer/starfish.def # Step to log in to GitHub Packages diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml index 93c2317..b76ba60 100644 --- a/.github/workflows/conda_build.yml +++ b/.github/workflows/conda_build.yml @@ -1,4 +1,4 @@ -name: starfish build +name: starfish conda build and upload # This workflow is triggered on pushes to the repository. on: @@ -7,7 +7,7 @@ on: - main # Trigger the workflow on push to the main branch jobs: - build: + conda-build-and-upload: # This job runs on the latest Ubuntu runner hosted by GitHub Actions runs-on: ubuntu-latest