diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml deleted file mode 100644 index c4d470b778..0000000000 --- a/.github/workflows/nightly-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Nightly Build -on: - workflow_dispatch: - schedule: - - cron: '0 20 * * *' - -jobs: - publish: - name: "Publish" - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ ubuntu-22.04 ] - jdk: [ 17 ] - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up JDK ${{ matrix.jdk }} - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.jdk }} - distribution: "zulu" - - name: Setup Gradle - uses: gradle/gradle-build-action@v2 - - name: Build - run: ./gradlew releaseTarGz --refresh-dependencies - - name: Update Nightly Release - uses: andelf/nightly-release@main - env: - GITHUB_TOKEN: ${{ github.token }} - with: - tag_name: nightly - name: 'Kafka on S3 Nightly Release $$' - draft: false - prerelease: true - body: | - This is a nightly release of Kafka on S3. - It's unstable compared to the official releases, **use it with caution**! - files: | - ./core/build/distributions/kafka_*[^a-z].tgz diff --git a/build.gradle b/build.gradle index 5b11ce5d5a..73fda3f69a 100644 --- a/build.gradle +++ b/build.gradle @@ -1140,6 +1140,7 @@ project(':core') { from(project.file("$rootDir/bin")) { into "bin/" } from(project.file("$rootDir/config")) { into "config/" } from(project.file("$rootDir/licenses")) { into "licenses/" } + from(project.file("$rootDir/docker/docker-compose.yaml")) { into "docker/" } from "$rootDir/LICENSE-binary" rename {String filename -> filename.replace("-binary", "")} from "$rootDir/NOTICE-binary" rename {String filename -> filename.replace("-binary", "")} from(configurations.runtimeClasspath) { into("libs/") }