Skip to content

Commit

Permalink
Don't upload zip file from tar location (#371)
Browse files Browse the repository at this point in the history
It looks like somebody made a typo.
The zip file(s) in the releases were broken :(

Co-authored-by: Aljoscha Frey (ext.) <aljoscha.frey@partner.bmwgroup.com>
  • Loading branch information
afreysenacor and Aljoscha Frey (ext.) authored Dec 12, 2024
1 parent cee09d3 commit fcd858f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ jobs:
echo s3_tar_file=${s3_tar_file} >> $GITHUB_ENV
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
echo s3_zip_path=`realpath ./s3-sink-connector/build/distributions/${s3_zip_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=${azure_tar_file} >> $GITHUB_ENV
echo azure_zip_file=${azure_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
echo azure_zip_path=`realpath ./azure-sink-connector/build/distributions/${azure_zip_file}` >> $GITHUB_ENV
- name: Create tag
run: |
Expand Down

0 comments on commit fcd858f

Please sign in to comment.