Skip to content

Commit 3acfc21

Browse files
Update ci.yml
Update to VideoAnnotationTool
1 parent b2ba648 commit 3acfc21

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
shell: pwsh
5757
run: >
5858
python -m PyInstaller --noconfirm --clean --windowed --onefile
59-
--name "SoccerNetProAnalyzer"
59+
--name "VideoAnnotationTool"
6060
--add-data "style;style"
6161
--add-data "ui;ui"
6262
--add-data "controllers;controllers"
@@ -67,15 +67,15 @@ jobs:
6767
if: github.event_name == 'workflow_dispatch'
6868
shell: pwsh
6969
run: |
70-
Move-Item -Force dist\SoccerNetProAnalyzer.exe dist\SoccerNetProAnalyzer-win.exe
71-
Compress-Archive -Path dist\SoccerNetProAnalyzer-win.exe -DestinationPath dist\SoccerNetProAnalyzer-win.zip -Force
70+
Move-Item -Force dist\VideoAnnotationTool.exe dist\VideoAnnotationTool-win.exe
71+
Compress-Archive -Path dist\VideoAnnotationTool-win.exe -DestinationPath dist\VideoAnnotationTool-win.zip -Force
7272
7373
- name: Upload artifact (manual runs only)
7474
if: github.event_name == 'workflow_dispatch'
7575
uses: actions/upload-artifact@v4
7676
with:
77-
name: SoccerNetProAnalyzer-Windows
78-
path: annotation_tool/dist/SoccerNetProAnalyzer-win.zip
77+
name: VideoAnnotationTool-Windows
78+
path: annotation_tool/dist/VideoAnnotationTool-win.zip
7979
retention-days: 3
8080

8181
build-macos:
@@ -116,7 +116,7 @@ jobs:
116116
shell: bash
117117
run: >
118118
python -m PyInstaller --noconfirm --clean --windowed
119-
--name "SoccerNetProAnalyzer"
119+
--name "VideoAnnotationTool"
120120
--add-data "style:style"
121121
--add-data "ui:ui"
122122
--add-data "controllers:controllers"
@@ -127,14 +127,14 @@ jobs:
127127
if: github.event_name == 'workflow_dispatch'
128128
shell: bash
129129
run: |
130-
ditto -c -k --sequesterRsrc --keepParent "dist/SoccerNetProAnalyzer.app" "dist/SoccerNetProAnalyzer-mac.zip"
130+
ditto -c -k --sequesterRsrc --keepParent "dist/VideoAnnotationTool.app" "dist/VideoAnnotationTool-mac.zip"
131131
132132
- name: Upload artifact (manual runs only)
133133
if: github.event_name == 'workflow_dispatch'
134134
uses: actions/upload-artifact@v4
135135
with:
136-
name: SoccerNetProAnalyzer-macOS
137-
path: annotation_tool/dist/SoccerNetProAnalyzer-mac.zip
136+
name: VideoAnnotationTool-macOS
137+
path: annotation_tool/dist/VideoAnnotationTool-mac.zip
138138
retention-days: 3
139139

140140
build-linux:
@@ -180,7 +180,7 @@ jobs:
180180
shell: bash
181181
run: >
182182
python -m PyInstaller --noconfirm --clean --windowed --onefile
183-
--name "SoccerNetProAnalyzer"
183+
--name "VideoAnnotationTool"
184184
--add-data "style:style"
185185
--add-data "ui:ui"
186186
--add-data "controllers:controllers"
@@ -191,15 +191,15 @@ jobs:
191191
if: github.event_name == 'workflow_dispatch'
192192
shell: bash
193193
run: |
194-
mv -f dist/SoccerNetProAnalyzer dist/SoccerNetProAnalyzer-linux
194+
mv -f dist/VideoAnnotationTool dist/VideoAnnotationTool-linux
195195
cd dist
196-
zip -r SoccerNetProAnalyzer-linux.zip SoccerNetProAnalyzer-linux
196+
zip -r VideoAnnotationTool-linux.zip VideoAnnotationTool-linux
197197
cd ..
198198
199199
- name: Upload artifact (manual runs only)
200200
if: github.event_name == 'workflow_dispatch'
201201
uses: actions/upload-artifact@v4
202202
with:
203-
name: SoccerNetProAnalyzer-Linux
204-
path: annotation_tool/dist/SoccerNetProAnalyzer-linux.zip
203+
name: VideoAnnotationTool-Linux
204+
path: annotation_tool/dist/VideoAnnotationTool-linux.zip
205205
retention-days: 3

0 commit comments

Comments
 (0)