fix(jetson): update entrypoint path & dockerfile path #12
Workflow file for this run
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
| name: Package Devcontainers Reusable | |
| on: | |
| repository_dispatch: | |
| types: [build-humble, build-jazzy, build-jetson] | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| package-devcontainers: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [humble, jazzy] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout (GitHub) | |
| uses: actions/checkout@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Build and run Dev Container task | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| imageName: ghcr.io/isri-aist/azure-kinect-container | |
| imageTag: ${{ matrix.os }} | |
| subFolder: ${{ matrix.os }} | |
| push: always | |
| runCmd: echo "Image has been built" | |
| package-devcontainers-jetson: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Build and Push Jetson Image | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| imageName: ghcr.io/${{ github.repository_owner }}/azure-kinect-container | |
| imageTag: jetson | |
| subFolder: jetson | |
| push: always |