Skip to content

Commit c52454d

Browse files
Update release.yml
Update to VideoAnnotationTool
1 parent 3acfc21 commit c52454d

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
shell: pwsh
7171
run: |
7272
python -m PyInstaller --noconfirm --clean --windowed --onefile `
73-
--name "SoccerNetProAnalyzer" `
73+
--name "VideoAnnotationTool" `
7474
--add-data "style;style" `
7575
--add-data "ui;ui" `
7676
--add-data "controllers;controllers" `
@@ -80,17 +80,17 @@ jobs:
8080
- name: Rename binary
8181
shell: pwsh
8282
run: |
83-
Move-Item -Force dist\SoccerNetProAnalyzer.exe dist\SoccerNetProAnalyzer-win.exe
83+
Move-Item -Force dist\VideoAnnotationTool.exe dist\VideoAnnotationTool-win.exe
8484
8585
- name: Zip Windows binary
8686
shell: pwsh
8787
run: |
88-
Compress-Archive -Path dist\SoccerNetProAnalyzer-win.exe -DestinationPath dist\SoccerNetProAnalyzer-win.zip -Force
88+
Compress-Archive -Path dist\VideoAnnotationTool-win.exe -DestinationPath dist\VideoAnnotationTool-win.zip -Force
8989
9090
- name: Upload Release Asset (Windows)
9191
uses: softprops/action-gh-release@v2
9292
with:
93-
files: annotation_tool/dist/SoccerNetProAnalyzer-win.zip
93+
files: annotation_tool/dist/VideoAnnotationTool-win.zip
9494
tag_name: ${{ github.ref_name }}
9595
9696
build-macos:
@@ -121,7 +121,7 @@ jobs:
121121
shell: bash
122122
run: >
123123
python -m PyInstaller --noconfirm --clean --windowed
124-
--name "SoccerNetProAnalyzer"
124+
--name "VideoAnnotationTool"
125125
--add-data "style:style"
126126
--add-data "ui:ui"
127127
--add-data "controllers:controllers"
@@ -131,12 +131,12 @@ jobs:
131131
- name: Zip macOS app
132132
shell: bash
133133
run: |
134-
ditto -c -k --sequesterRsrc --keepParent "dist/SoccerNetProAnalyzer.app" "dist/SoccerNetProAnalyzer-mac.zip"
134+
ditto -c -k --sequesterRsrc --keepParent "dist/VideoAnnotationTool.app" "dist/VideoAnnotationTool-mac.zip"
135135
136136
- name: Upload Release Asset (macOS)
137137
uses: softprops/action-gh-release@v2
138138
with:
139-
files: annotation_tool/dist/SoccerNetProAnalyzer-mac.zip
139+
files: annotation_tool/dist/VideoAnnotationTool-mac.zip
140140
tag_name: ${{ github.ref_name }}
141141
142142
build-linux:
@@ -173,7 +173,7 @@ jobs:
173173
shell: bash
174174
run: >
175175
python -m PyInstaller --noconfirm --clean --windowed --onefile
176-
--name "SoccerNetProAnalyzer"
176+
--name "VideoAnnotationTool"
177177
--add-data "style:style"
178178
--add-data "ui:ui"
179179
--add-data "controllers:controllers"
@@ -183,13 +183,13 @@ jobs:
183183
- name: Rename binary
184184
shell: bash
185185
run: |
186-
mv -f dist/SoccerNetProAnalyzer dist/SoccerNetProAnalyzer-linux
186+
mv -f dist/VideoAnnotationTool dist/VideoAnnotationTool-linux
187187
188188
- name: Zip Linux binary
189189
shell: bash
190190
run: |
191191
cd dist
192-
zip -r SoccerNetProAnalyzer-linux.zip SoccerNetProAnalyzer-linux
192+
zip -r VideoAnnotationTool-linux.zip VideoAnnotationTool-linux
193193
cd ..
194194
195195
- name: Upload Release Asset (Linux)

0 commit comments

Comments
 (0)