line width fix #12
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: Create and publish a Docker image | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
tags: ["*"] | |
branches: | |
- ros2 | |
env: | |
IMAGE_NAME: ${{ github.repository }} | |
ROS_DISTRO: jazzy | |
BRANCH: ros2 | |
jobs: | |
build-and-push-to-docker-hub: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: woensugchoi/dave | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
file: .docker/jazzy.dockerfile | |
build-args: | | |
ROS_DISTRO=${{ env.ROS_DISTRO }} | |
BRANCH=${{ env.BRANCH }} | |
- name: Debug environment variables | |
run: | | |
echo "ROS_DISTRO: ${ROS_DISTRO}" | |
echo "BRANCH: ${BRANCH}" |