Skip to content

Commit 2214936

Browse files
Update release.yml
Update to VideoAnnotationTool
1 parent 54219ad commit 2214936

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
shell: pwsh
7272
run: |
7373
python -m PyInstaller --noconfirm --clean --windowed --onefile `
74-
--name "SoccerNetProAnalyzer" `
74+
--name "VideoAnnotationTool" `
7575
--add-data "style;style" `
7676
--add-data "ui;ui" `
7777
--add-data "controllers;controllers" `
@@ -85,17 +85,17 @@ jobs:
8585
- name: Rename binary
8686
shell: pwsh
8787
run: |
88-
Move-Item -Force dist\SoccerNetProAnalyzer.exe dist\SoccerNetProAnalyzer-win.exe
88+
Move-Item -Force dist\VideoAnnotationTool.exe dist\VideoAnnotationTool-win.exe
8989
9090
- name: Zip Windows binary
9191
shell: pwsh
9292
run: |
93-
Compress-Archive -Path dist\SoccerNetProAnalyzer-win.exe -DestinationPath dist\SoccerNetProAnalyzer-win.zip -Force
93+
Compress-Archive -Path dist\VideoAnnotationTool-win.exe -DestinationPath dist\VideoAnnotationTool-win.zip -Force
9494
9595
- name: Upload Release Asset (Windows)
9696
uses: softprops/action-gh-release@v2
9797
with:
98-
files: annotation_tool/dist/SoccerNetProAnalyzer-win.zip
98+
files: annotation_tool/dist/VideoAnnotationTool-win.zip
9999
tag_name: ${{ github.ref_name }}
100100
101101
build-macos:
@@ -126,7 +126,7 @@ jobs:
126126
shell: bash
127127
run: >
128128
python -m PyInstaller --noconfirm --clean --windowed
129-
--name "SoccerNetProAnalyzer"
129+
--name "VideoAnnotationTool"
130130
--add-data "style:style"
131131
--add-data "ui:ui"
132132
--add-data "controllers:controllers"
@@ -140,12 +140,12 @@ jobs:
140140
- name: Zip macOS app
141141
shell: bash
142142
run: |
143-
ditto -c -k --sequesterRsrc --keepParent "dist/SoccerNetProAnalyzer.app" "dist/SoccerNetProAnalyzer-mac.zip"
143+
ditto -c -k --sequesterRsrc --keepParent "dist/VideoAnnotationTool.app" "dist/VideoAnnotationTool-mac.zip"
144144
145145
- name: Upload Release Asset (macOS)
146146
uses: softprops/action-gh-release@v2
147147
with:
148-
files: annotation_tool/dist/SoccerNetProAnalyzer-mac.zip
148+
files: annotation_tool/dist/VideoAnnotationTool-mac.zip
149149
tag_name: ${{ github.ref_name }}
150150
151151
build-linux:
@@ -183,7 +183,7 @@ jobs:
183183
shell: bash
184184
run: >
185185
python -m PyInstaller --noconfirm --clean --windowed --onefile
186-
--name "SoccerNetProAnalyzer"
186+
--name "VideoAnnotationTool"
187187
--add-data "style:style"
188188
--add-data "ui:ui"
189189
--add-data "controllers:controllers"
@@ -197,17 +197,17 @@ jobs:
197197
- name: Rename binary
198198
shell: bash
199199
run: |
200-
mv -f dist/SoccerNetProAnalyzer dist/SoccerNetProAnalyzer-linux
200+
mv -f dist/VideoAnnotationTool dist/VideoAnnotationTool-linux
201201
202202
- name: Zip Linux binary
203203
shell: bash
204204
run: |
205205
cd dist
206-
zip -r SoccerNetProAnalyzer-linux.zip SoccerNetProAnalyzer-linux
206+
zip -r VideoAnnotationTool-linux.zip VideoAnnotationTool-linux
207207
cd ..
208208
209209
- name: Upload Release Asset (Linux)
210210
uses: softprops/action-gh-release@v2
211211
with:
212-
files: annotation_tool/dist/SoccerNetProAnalyzer-linux.zip
212+
files: annotation_tool/dist/VideoAnnotationTool-linux.zip
213213
tag_name: ${{ github.ref_name }}

0 commit comments

Comments
 (0)