diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f5015d8..fc6e159 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -11,7 +11,7 @@ env: BRANCH: master jobs: - build-and-push-release: + build-and-push-image: runs-on: ubuntu-latest permissions: contents: read @@ -50,45 +50,3 @@ jobs: labels: ${{ steps.meta.outputs.labels }} file: .docker/release/Dockerfile build-args: ROS_DISTRO=${{ env.ROS_DISTRO }} - - build-and-push-source: - 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: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Docker meta - id: meta - uses: docker/metadata-action@v5 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_source - 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/source/Dockerfile - build-args: | - ROS_DISTRO=${{ env.ROS_DISTRO }} - BRANCH=${{ env.BRANCH }}