Fix EGL and vulkan layers config files #3
This file contains hidden or 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
# Ref: https://docs.docker.com/build/ci/github-actions/ | |
name: Build Docker Image for Isaac Sim 4.2 (pip) | |
on: | |
push: | |
branches: | |
- "master" | |
paths: | |
- .github/workflows/build-isaacsim-4-2-pip.yaml | |
- Dockerfile_isaacsim_4_2_pip | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile_isaacsim_4_2_pip | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/isaac-sim-pip:4.2 |