Skip to content

Commit

Permalink
Add extension manager artifacts to draft (#75)
Browse files Browse the repository at this point in the history
+ add extension manager artifacts in upload github release assets workflow
+ alter date in changes doc
+ alter gitattributes: remove workflow as enerated
+ alter project-keeper config: add exclusion for workflow
  • Loading branch information
pj-spoelders authored Oct 25, 2023
1 parent d411d38 commit 806a1d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ doc/changes/changelog.md linguist-genera
.github/workflows/ci-build-next-java.yml linguist-generated=true
.github/workflows/dependencies_check.yml linguist-generated=true
.github/workflows/release_droid_print_quick_checksum.yml linguist-generated=true
.github/workflows/release_droid_upload_github_release_assets.yml linguist-generated=true
.settings/org.eclipse.jdt.core.prefs linguist-generated=true
.settings/org.eclipse.jdt.ui.prefs linguist-generated=true
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ jobs:
run: |
cd target
find . -maxdepth 1 -name \*.jar -exec bash -c 'sha256sum {} > {}.sha256' \;
- name: Generate sha256sum files for extension
run: |
cd extension/dist/
sha256sum kafka-connector-extension.js > kafka-connector-extension.js.sha256
- name: Upload extension
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: extension/dist/kinesis-connector-extension.js*
- name: Upload assets to the GitHub release draft
uses: shogo82148/actions-upload-release-asset@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ sources:
- integration_tests
excludes:
- "E-PK-CORE-18: Outdated content: '.github/workflows/ci-build.yml'"
- "E-PK-CORE-18: Outdated content: '.github/workflows/release_droid_prepare_original_checksum.yml'"
- "E-PK-CORE-18: Outdated content: '.github/workflows/release_droid_prepare_original_checksum.yml'"
- "E-PK-CORE-18: Outdated content: '.github/workflows/release_droid_upload_github_release_assets.yml'"
2 changes: 1 addition & 1 deletion doc/changes/changes_1.7.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Exasol Kafka Connector Extension 1.7.0, released 2023-10-24
# Exasol Kafka Connector Extension 1.7.0, released 2023-10-25

Code name: Extension manager support

Expand Down

0 comments on commit 806a1d8

Please sign in to comment.