Skip to content

Commit

Permalink
update apptainer_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
egluckthaler committed Dec 18, 2023
1 parent 6a1d391 commit 58eb4ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/apptainer_build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Build and Push Apptainer Image
name: starfish apptainer build and push

on:
push:
branches:
- 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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: starfish build
name: starfish conda build and upload

# This workflow is triggered on pushes to the repository.
on:
Expand All @@ -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

Expand Down

0 comments on commit 58eb4ed

Please sign in to comment.