Skip to content

Commit

Permalink
ci: add pack_all and push_all scripts to simplify package deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
wtertinek committed May 18, 2024
1 parent 9371a70 commit 1aa2751
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deploy/pack_all.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
setlocal

set VERSION=%1

for /L %%Y in (2015,1,2024) do (
call pack.bat %%Y %VERSION%
)

endlocal
10 changes: 10 additions & 0 deletions deploy/push_all.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
setlocal

set VERSION=%1
set API_KEY=%2

for /L %%Y in (2015,1,2024) do (
call push.bat %%Y %VERSION% %API_KEY%
)

endlocal

0 comments on commit 1aa2751

Please sign in to comment.