|
70 | 70 | with: |
71 | 71 | build-windows-x86-32bit: true |
72 | 72 | build-windows-x86-64bit: true |
| 73 | + build-windows-arm-64bit: true |
73 | 74 | build-linux-x86-32bit: true |
74 | 75 | build-linux-x86-64bit: true |
| 76 | + build-linux-arm-32bit: true |
| 77 | + build-linux-arm-64bit: true |
75 | 78 | build-macos-universal: true |
76 | 79 | build-stage-code: final |
77 | 80 | artifacts-retention-days: 7 |
@@ -126,36 +129,56 @@ jobs: |
126 | 129 | done |
127 | 130 | echo "Draft Release not found in 10 attempts" |
128 | 131 | exit 1 |
129 | | - - name: Upload Linux 32Bit .tgz release asset |
| 132 | + - name: Upload Linux x86 32Bit .tgz release asset |
130 | 133 | if: ${{ needs.xojo.outputs.build-linux-x86-32bit == 'done'}} |
131 | 134 | working-directory: ${{ env.BUILDS_FOLDER }} |
132 | 135 | run: | |
133 | 136 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-linux-x86-32bit-tgz-asset }}#${{ needs.xojo.outputs.build-linux-x86-32bit-tgz-name }}" |
134 | | - - name: Upload Linux 64Bit .tgz release asset |
| 137 | + - name: Upload Linux x86 64Bit .tgz release asset |
135 | 138 | if: ${{ needs.xojo.outputs.build-linux-x86-64bit == 'done'}} |
136 | 139 | working-directory: ${{ env.BUILDS_FOLDER }} |
137 | 140 | run: | |
138 | 141 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-linux-x86-64bit-tgz-asset }}#${{ needs.xojo.outputs.build-linux-x86-64bit-tgz-name }}" |
139 | | - - name: Upload Windows 32Bit .zip release asset |
| 142 | + - name: Upload Linux ARM 32Bit .tgz release asset |
| 143 | + if: ${{ needs.xojo.outputs.build-linux-arm-32bit == 'done'}} |
| 144 | + working-directory: ${{ env.BUILDS_FOLDER }} |
| 145 | + run: | |
| 146 | + gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-linux-arm-32bit-tgz-asset }}#${{ needs.xojo.outputs.build-linux-arm-32bit-tgz-name }}" |
| 147 | + - name: Upload Linux ARM 64Bit .tgz release asset |
| 148 | + if: ${{ needs.xojo.outputs.build-linux-arm-64bit == 'done'}} |
| 149 | + working-directory: ${{ env.BUILDS_FOLDER }} |
| 150 | + run: | |
| 151 | + gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-linux-arm-64bit-tgz-asset }}#${{ needs.xojo.outputs.build-linux-arm-64bit-tgz-name }}" |
| 152 | + - name: Upload Windows x86 32Bit .zip release asset |
140 | 153 | if: ${{ needs.xojo.outputs.build-windows-x86-32bit == 'done'}} |
141 | 154 | working-directory: ${{ env.BUILDS_FOLDER }} |
142 | 155 | run: | |
143 | 156 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-x86-32bit-zip-asset }}#${{ needs.xojo.outputs.build-windows-x86-32bit-zip-name }}" |
144 | | - - name: Upload Windows 32Bit setup release asset |
| 157 | + - name: Upload Windows x86 32Bit setup release asset |
145 | 158 | if: ${{ needs.xojo.outputs.build-windows-x86-32bit == 'done'}} |
146 | 159 | working-directory: ${{ env.BUILDS_FOLDER }} |
147 | 160 | run: | |
148 | 161 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-x86-32bit-setup-asset }}#${{ needs.xojo.outputs.build-windows-x86-32bit-setup-name }}" |
149 | | - - name: Upload Windows 64Bit .zip release asset |
| 162 | + - name: Upload Windows x86 64Bit .zip release asset |
150 | 163 | if: ${{ needs.xojo.outputs.build-windows-x86-64bit == 'done'}} |
151 | 164 | working-directory: ${{ env.BUILDS_FOLDER }} |
152 | 165 | run: | |
153 | 166 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-x86-64bit-zip-asset }}#${{ needs.xojo.outputs.build-windows-x86-64bit-zip-name }}" |
154 | | - - name: Upload Windows 64Bit setup release asset |
| 167 | + - name: Upload Windows x86 64Bit setup release asset |
155 | 168 | if: ${{ needs.xojo.outputs.build-windows-x86-64bit == 'done'}} |
156 | 169 | working-directory: ${{ env.BUILDS_FOLDER }} |
157 | 170 | run: | |
158 | 171 | gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-x86-64bit-setup-asset }}#${{ needs.xojo.outputs.build-windows-x86-64bit-setup-name }}" |
| 172 | + - name: Upload Windows ARM 64Bit .zip release asset |
| 173 | + if: ${{ needs.xojo.outputs.build-windows-arm-64bit == 'done'}} |
| 174 | + working-directory: ${{ env.BUILDS_FOLDER }} |
| 175 | + run: | |
| 176 | + gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-arm-64bit-zip-asset }}#${{ needs.xojo.outputs.build-windows-arm-64bit-zip-name }}" |
| 177 | + - name: Upload Windows ARM 64Bit setup release asset |
| 178 | + if: ${{ needs.xojo.outputs.build-windows-arm-64bit == 'done'}} |
| 179 | + working-directory: ${{ env.BUILDS_FOLDER }} |
| 180 | + run: | |
| 181 | + gh release upload ${{ needs.project-version.outputs.version-tag }} "${{ needs.xojo.outputs.build-windows-arm-64bit-setup-asset }}#${{ needs.xojo.outputs.build-windows-arm-64bit-setup-name }}" |
159 | 182 | - name: Upload macOS Universal .dmg release asset |
160 | 183 | if: ${{ needs.xojo.outputs.build-macos-universal == 'done'}} |
161 | 184 | working-directory: ${{ env.BUILDS_FOLDER }} |
|
0 commit comments