File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -89,11 +89,23 @@ jobs:
89
89
copy target\${{ matrix.target }}\release\messy-folder-reorganizer-ai.exe release\
90
90
7z a messy-folder-reorganizer-ai-${{ matrix.target }}.zip release\messy-folder-reorganizer-ai.exe
91
91
92
+ - name : List built binaries
93
+ run : ls -lah release/
94
+
92
95
- name : Upload Release Binaries
96
+ if : matrix.os == 'windows-latest'
93
97
uses : softprops/action-gh-release@v2
94
98
with :
95
99
files : |
96
- messy-folder-reorganizer-ai-*.tar.gz
97
100
messy-folder-reorganizer-ai-*.zip
98
101
env :
99
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
102
+ GITHUB_TOKEN : ${{ secrets.MY_GITHUB_TOKEN }}
103
+
104
+ - name : Upload Release Binaries
105
+ if : matrix.os != 'windows-latest'
106
+ uses : softprops/action-gh-release@v2
107
+ with :
108
+ files : |
109
+ messy-folder-reorganizer-ai-*.tar.gz
110
+ env :
111
+ GITHUB_TOKEN : ${{ secrets.MY_GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments