Skip to content

Commit

Permalink
Clean docker.yml github workflow ahead of test
Browse files Browse the repository at this point in the history
  • Loading branch information
GreatAlexander committed Apr 22, 2024
1 parent c06e3b8 commit ec0fe45
Showing 1 changed file with 1 addition and 43 deletions.
44 changes: 1 addition & 43 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
BRANCH: master

jobs:
build-and-push-release:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -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 }}

0 comments on commit ec0fe45

Please sign in to comment.