Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Run basic sanity checks/tests on the new image before pushing
run: |
echo 'check if accelerate is installed and in the PATH'
IMAGE_NAME=${{ vars.QUAY_REPOSITORY }}fms-hf-tuning:main-nvcr-latest
docker run --rm -it --entrypoint which "$IMAGE_NAME" accelerate
echo 'checks done'
- name: Push docker image for every commit to Quay.io as dev images
run: |
docker push ${{ vars.QUAY_REPOSITORY }}fms-hf-tuning:main-nvcr-latest
Loading