Skip to content

Commit

Permalink
refactor: combine apt-get installs in ci setup
Browse files Browse the repository at this point in the history
  • Loading branch information
wholtz committed Sep 29, 2024
1 parent 60447f5 commit 0c0c807
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,9 @@ jobs:
steps:
- name: Install GNU parallel, shellcheck, and apptainer
run: |
sudo apt-get install --no-install-recommends -y parallel shellcheck software-properties-common
sudo add-apt-repository -y ppa:apptainer/ppa
sudo apt update
sudo apt install -y apptainer
sudo apt-get install --no-install-recommends -y parallel shellcheck software-properties-common apptainer
- name: Setup nox
uses: wntrblm/nox@5656fcedc31a1ea37d016e4d94d00185330cc528
- name: Checkout source
Expand Down Expand Up @@ -120,6 +119,7 @@ jobs:
mambaorg/micromamba
ghcr.io/mamba-org/micromamba
flavor: latest=false
# This comment provides a summary of the tags generated by this action:
# latest
# base_image
# alpine
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker images
- name: Build Docker images but do not push them yet
id: docker_build
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85
env:
Expand Down

0 comments on commit 0c0c807

Please sign in to comment.