We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6ab9e commit bf50321Copy full SHA for bf50321
.github/workflows/rpe_test.yml
@@ -217,9 +217,16 @@ jobs:
217
218
219
- name: Upload Release
220
- if: startsWith(github.ref, 'refs/tags/')
+ if: ${{ matrix.os != 'windows-latest' && contains(github.ref, 'refs/tags/') }}
221
uses: softprops/action-gh-release@v1
222
with:
223
- files: dist/rapid_power_estimator*.tar.gz*
+ files: dist/rapid_power_estimator*.tar.gz
224
+
225
226
+ - name: Upload Release
227
+ if: ${{ matrix.os == 'windows-latest' && contains(github.ref, 'refs/tags/') }}
228
+ uses: softprops/action-gh-release@v1
229
+ with:
230
+ files: dist/rapid_power_estimator*.exe
231
232
0 commit comments