Bump jinja2 from 3.1.2 to 3.1.3 in /docker (#28) #31
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
name: Push to Docker Hub | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "docker/**" | |
- ".github/workflows/docker-publish.yml" | |
jobs: | |
build-and-publish: | |
strategy: | |
fail-fast: false | |
matrix: | |
cuda: ["11.4.3", "11.8.0"] | |
carla: ["0.9.10.1", "0.9.13"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Reclaim disk space as specified at https://github.com/actions/runner-images/issues/2840 | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Build and push container | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./docker | |
build-args: | | |
CUDA_VERSION=${{ matrix.cuda }} | |
CARLA_VERSION=${{ matrix.carla }} | |
push: true | |
tags: faizansana/intersection-driving:cuda-${{ matrix.cuda }}-carla-${{ matrix.carla }} |