Skip to content

Commit

Permalink
CLDR-17918 build: add identity
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Oct 23, 2024
1 parent 1fd5dbe commit 5833e93
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,32 @@ jobs:
lfs: false
repository: ${{ github.event.inputs.cldr-repo }}
path: cldr
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('cldr/tools/**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Clone Data
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.data-ref }}
repository: ${{ github.event.inputs.data-repo }}
sparse-checkout: ${{ github.event.inputs.data-dir }}
path: cldr-staging
- name: Setup Config
run: |
cd cldr-json
echo VERSION=${{ github.event.inputs.version }} > local-config.sh
echo CLDR_DIR=../cldr >> local-config.sh
echo INDATA=../cldr-staging/${{ github.event.inputs.data-dir }} >> local-config.sh
cat local-config.sh
bash cldr-identify.sh | tee ../cldr-identity.txt
- name: Upload cldr-identity.txt
uses: actions/upload-artifact@v4
with:
name: cldr-identity
path: ./cldr-identity.txt


0 comments on commit 5833e93

Please sign in to comment.