Skip to content

Commit

Permalink
Managed by Terraform, updates managed through: https://github.com/Air…
Browse files Browse the repository at this point in the history
  • Loading branch information
airthings-atlantis committed Dec 11, 2024
1 parent e0dbc9c commit 85f45f2
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish package for clickhouse-kafka-connect
on:
workflow_run:
workflows: [ "auto-release" ]
types:
- complete
permissions:
id-token: write
contents: read
packages: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Publish to github packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
GITHUB_ACCESS_TOKEN_READ_PACKAGES: ${{ secrets.ACCESS_TOKEN_READ_PACKAGES }}

run: |
./gradlew \
publishclickhouse-kafka-connectPublicationsToAirthingsGitHubPackagesRepository

0 comments on commit 85f45f2

Please sign in to comment.