Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev into main #578

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
- name: Get java-version
id: get-version
Expand Down
4 changes: 2 additions & 2 deletions src/docker/startup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$ErrorActionPreference='Stop'
cd $PSScriptRoot
Write-Host "Shutting down Docker Compose orchestration..."
docker-compose down
docker compose down

Write-Host "Deleting prior Cosmos DB connectors..."
rm -rf "$PSScriptRoot/connectors"
Expand All @@ -26,4 +26,4 @@ Write-Host "Building Cosmos DB Kafka Connect Docker image"
docker build . -t cosmosdb-kafka-connect:latest

Write-Host "Starting Docker Compose..."
docker-compose up -d
docker compose up -d
4 changes: 2 additions & 2 deletions src/docker/startup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
echo "Shutting down Docker Compose orchestration..."
docker-compose down
docker compose down

echo "Deleting prior Cosmos DB connectors..."
rm -rf connectors
Expand All @@ -24,4 +24,4 @@ echo "Building Cosmos DB Kafka Connect Docker image"
docker build . -t cosmosdb-kafka-connect:latest

echo "Starting Docker Compose..."
docker-compose up -d
docker compose up -d
Loading