From 3a89eeda7236e3d87a78d69779317650c77dd331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Gonz=C3=A1lez=20Santamarta?= Date: Sat, 16 Nov 2024 10:34:20 +0100 Subject: [PATCH] rolling build CI fixed --- .github/workflows/rolling-docker-build.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rolling-docker-build.yml b/.github/workflows/rolling-docker-build.yml index 72dd8a7..c14f442 100644 --- a/.github/workflows/rolling-docker-build.yml +++ b/.github/workflows/rolling-docker-build.yml @@ -1,4 +1,4 @@ -name: Rolling Docker Builds +name: Rolling Docker Build on: [push, pull_request] @@ -9,15 +9,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Build and push uses: docker/build-push-action@v6 with: build-args: ROS_DISTRO=rolling - push: true - tags: mgons/yasmin:rolling + push: false