Skip to content

Commit

Permalink
Merge pull request #578 from microsoft/dev
Browse files Browse the repository at this point in the history
Dev into main
  • Loading branch information
tvaron3 authored Nov 21, 2024
2 parents 4369bbc + f98e180 commit 6b9fadd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
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

0 comments on commit 6b9fadd

Please sign in to comment.