We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2b05f4 commit 807aebaCopy full SHA for 807aeba
.github/workflows/tzdata-update.yml
@@ -1,6 +1,7 @@
1
name: tzdata-update
2
3
on:
4
+ workflow_dispatch:
5
schedule:
6
- cron: '0 11 * * *'
7
@@ -22,12 +23,14 @@ jobs:
22
23
with:
24
ref: ${{ matrix.branch }}
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
+ - 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
30
31
- name: Check and update
32
run: |
- VERSION=`ls /tmp/icu-checkout/tzdata/icunew/ -r1a |head -1`
33
+ VERSION=`ls /tmp/icu-data-main/tzdata/icunew/ -r1a |head -1`
34
echo Last version: $VERSION
35
36
if [ "$VERSION" == "`cat extern/icu/tzdata/version.txt`" ]
0 commit comments