Skip to content

Commit

Permalink
ci: Add workflow for release image creation
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-caspers committed Oct 14, 2024
1 parent 2caaff7 commit ca65ca7
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
build:
needs: build_dev_container
uses: ./.github/workflows/ci_build.yml
build_release_image:
needs: build
uses: ./.github/workflows/ci_build_release_image.yml
unit_test:
needs: build_dev_container
uses: ./.github/workflows/ci_unit_test.yml
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/ci_build_release_image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI Build Release Image
'on':
workflow_call: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Cargo build
uses: devcontainers/[email protected]
with:
cacheFrom: ghcr.io/vorausrobotik/voraus-ros-bridge-dev
runCmd: cargo ament-build --install-base install/voraus-ros-bridge -- --release
push: never
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/vorausrobotik/voraus-ros-bridge
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit ca65ca7

Please sign in to comment.