-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(#9097): load docker images for external contributors
- Loading branch information
1 parent
c29927f
commit f784c0d
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,6 +163,17 @@ jobs: | |
node-version: ${{ env.NODE_VERSION }} | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download docker images artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: cht-images | ||
path: images/ | ||
if: ${{ !env.INTERNAL_CONTRIBUTOR }} | ||
- name: Load docker images | ||
run: ls -1 *.tar | xargs --no-run-if-empty -L 1 docker load -i | ||
working-directory: images/ | ||
if: ${{ !env.INTERNAL_CONTRIBUTOR }} | ||
|
||
- run: mkdir tests/logs | ||
- run: python -m pip install git+https://github.com/medic/[email protected]#egg=pyxform-medic | ||
- run: npm install -g cht-conf | ||
|