|
63 | 63 | export azure_zip_file=$(ls ./storage/azure/build/distributions/ | grep zip) |
64 | 64 | echo azure_tar_file=${azure_tar_file} >> $GITHUB_ENV |
65 | 65 | echo azure_zip_file=${azure_zip_file} >> $GITHUB_ENV |
| 66 | + # Filesystem libs |
| 67 | + export fs_tar_file=$(ls ./storage/filesystem/build/distributions/ | grep tgz) |
| 68 | + export fs_zip_file=$(ls ./storage/filesystem/build/distributions/ | grep zip) |
| 69 | + echo fs_tar_file=${fs_tar_file} >> $GITHUB_ENV |
| 70 | + echo fs_zip_file=${fs_zip_file} >> $GITHUB_ENV |
66 | 71 |
|
67 | 72 | echo core_tar_path=`realpath ./core/build/distributions/${core_tar_file}` >> $GITHUB_ENV |
68 | 73 | echo core_zip_path=`realpath ./core/build/distributions/${core_zip_file}` >> $GITHUB_ENV |
|
72 | 77 | echo gcs_zip_path=`realpath ./storage/gcs/build/distributions/${gcs_zip_file}` >> $GITHUB_ENV |
73 | 78 | echo azure_tar_path=`realpath ./storage/azure/build/distributions/${azure_tar_file}` >> $GITHUB_ENV |
74 | 79 | echo azure_zip_path=`realpath ./storage/azure/build/distributions/${azure_zip_file}` >> $GITHUB_ENV |
| 80 | + echo fs_tar_path=`realpath ./storage/filesystem/build/distributions/${fs_tar_file}` >> $GITHUB_ENV |
| 81 | + echo fs_zip_path=`realpath ./storage/filesystem/build/distributions/${fs_zip_file}` >> $GITHUB_ENV |
75 | 82 |
|
76 | 83 | - name: Create tag |
77 | 84 | env: |
@@ -168,3 +175,21 @@ jobs: |
168 | 175 | asset_path: ${{ env.azure_zip_path }} |
169 | 176 | asset_name: ${{ env.azure_zip_file }} |
170 | 177 | asset_content_type: application/zip |
| 178 | + - name: Upload filesystem tar |
| 179 | + uses: actions/upload-release-asset@v1 |
| 180 | + env: |
| 181 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 182 | + with: |
| 183 | + upload_url: ${{ steps.create_release.outputs.upload_url }} |
| 184 | + asset_path: ${{ env.fs_tar_path }} |
| 185 | + asset_name: ${{ env.fs_tar_file }} |
| 186 | + asset_content_type: application/tar |
| 187 | + - name: Upload filesystem zip |
| 188 | + uses: actions/upload-release-asset@v1 |
| 189 | + env: |
| 190 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 191 | + with: |
| 192 | + upload_url: ${{ steps.create_release.outputs.upload_url }} |
| 193 | + asset_path: ${{ env.fs_zip_path }} |
| 194 | + asset_name: ${{ env.fs_zip_file }} |
| 195 | + asset_content_type: application/zip |
0 commit comments