Skip to content

Commit

Permalink
Install docker within docker
Browse files Browse the repository at this point in the history
  • Loading branch information
bschilder committed Oct 12, 2023
1 parent 2da879e commit 3cb6b31
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,15 @@ runs:
name: ${{ runner.os }}-biocversion-${{ matrix.config.bioc }}-r-${{ matrix.config.r }}-results
path: check

- name: 🛠 Install Docker (within Docker container) ️
if : |
(!contains(github.event.head_commit.message, '[nodocker]')) && inputs.run_docker == 'true' && runner.os == 'Linux'
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
chmod +x get-docker.sh
sh get-docker.sh
shell: bash {0}

#### Docker registry steps ####
# - name: 🐳🛠 Set up Docker Buildx
# if: |
Expand Down

0 comments on commit 3cb6b31

Please sign in to comment.