Added functionality to rename tables of the events coming from debezium. #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is to clean up the release asset (debezium-server dist) created | |
# by workflow job build_debezium_server upon closing of a pull request. | |
name: Clean up Release Asset | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- voyager-main | |
jobs: | |
clean_up_release_asset: | |
name: "Clean up Release Asset" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Action | |
uses: actions/checkout@v3 | |
- name: Compute dist name (PR) | |
run: | | |
echo "DIST_NAME=debezium-server-${GITHUB_HEAD_REF//\//_}" >> "$GITHUB_ENV" | |
- name: Delete dist | |
run: | | |
gh release delete-asset voyager-debezium ${{ env.DIST_NAME }}.tar.gz -y | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |