File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11name : tzdata-update
22
33on :
4+ workflow_dispatch :
45 schedule :
56 - cron : ' 0 11 * * *'
67
@@ -22,12 +23,14 @@ jobs:
2223 with :
2324 ref : ${{ matrix.branch }}
2425
25- - name : Checkout ICU
26- run : GIT_CLONE_PROTECTION_ACTIVE=false git clone --depth 1 https://github.com/unicode-org/icu-data.git -b main /tmp/icu-checkout
26+ - name : Download ICU
27+ run : |
28+ wget --no-verbose -O /tmp/icu.zip https://github.com/unicode-org/icu-data/archive/refs/heads/main.zip
29+ unzip -d /tmp /tmp/icu.zip
2730
2831 - name : Check and update
2932 run : |
30- VERSION=`ls /tmp/icu-checkout /tzdata/icunew/ -r1a |head -1`
33+ VERSION=`ls /tmp/icu-data-main /tzdata/icunew/ -r1a |head -1`
3134 echo Last version: $VERSION
3235
3336 if [ "$VERSION" == "`cat extern/icu/tzdata/version.txt`" ]
You can’t perform that action at this time.
0 commit comments