carma exec to accept network (#2457) #202
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
# This workflow will build and push official docker images when new push occurs to develop, master, release branches but doesn't run any unit test or sonar scanner | |
name: Docker Hub build | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
- "release/*" | |
tags: | |
- "carma-system-*" | |
jobs: | |
dockerhub: | |
uses: usdot-fhwa-stol/actions/.github/workflows/dockerhub.yml@main | |
secrets: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |