Skip to content

Commit

Permalink
Merge pull request #244 from Aiven-Open/add-azure-blob-storage-connector
Browse files Browse the repository at this point in the history
Add Azure Blob Storage Sink Connector
  • Loading branch information
gharris1727 authored Oct 1, 2024
2 parents 52a4117 + ad37f19 commit 206abe7
Show file tree
Hide file tree
Showing 31 changed files with 5,672 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ jobs:
echo s3_zip_file=${s3_zip_file} >> $GITHUB_ENV
echo s3_tar_path=`realpath ./s3-sink-connector/build/distributions/${s3_tar_file}` >> $GITHUB_ENV
echo s3_zip_path=`realpath ./s3-sink-connector/build/distributions/${s3_tar_file}` >> $GITHUB_ENV
export azure_tar_file=$(ls ./azure-sink-connector/build/distributions/ | grep tar)
export azure_zip_file=$(ls ./azure-sink-connector/build/distributions/ | grep zip)
echo azure_tar_file=${s3_tar_file} >> $GITHUB_ENV
echo azure_zip_file=${s3_zip_file} >> $GITHUB_ENV
echo azure_tar_path=`realpath ./azure-sink-connector/build/distributions/${azure_tar_file}` >> $GITHUB_ENV
echo azure_zip_path=`realpath ./azure-sink-connector/build/distributions/${azure_tar_file}` >> $GITHUB_ENV
- name: Create tag
run: |
Expand Down Expand Up @@ -122,3 +129,23 @@ jobs:
asset_path: ${{ env.s3_zip_path }}
asset_name: ${{ env.s3_zip_file }}
asset_content_type: application/zip

- name: Upload tar Azure
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.azure_tar_path }}
asset_name: ${{ env.azure_tar_file }}}
asset_content_type: application/tar

- name: Upload zip Azure
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.azure_zip_path }}
asset_name: ${{ env.azure_zip_file }}
asset_content_type: application/zip
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ gradle-wrapper.properties

# Build files
build/
/azure-sink-connector/.jqwik-database
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [Aiven Connector Commons](./commons/README.md)
- [Aiven GCS Sink Connector](./gcs-sink-connector/README.md)
- [Aiven S3 Sink Connector](./s3-sink-connector/README.md)
- [Aiven Azure Blob Sink Connector](./azure-sink-connector/README.md)

# Development

Expand Down
Loading

0 comments on commit 206abe7

Please sign in to comment.