From 319d5a6510c84fe01396387801dcc539a19a9f7f Mon Sep 17 00:00:00 2001 From: 0xb10c Date: Wed, 25 Sep 2024 12:42:59 +0200 Subject: [PATCH] change: download and extract compressed list in CI The CI job has been failing from time to time recently. In an attempt to improve the CI job, download the compressed SDN list. --- .github/workflows/generate-lists.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/generate-lists.yml b/.github/workflows/generate-lists.yml index 4c962b6..3786e20 100644 --- a/.github/workflows/generate-lists.yml +++ b/.github/workflows/generate-lists.yml @@ -23,13 +23,14 @@ jobs: with: python-version: 3.11 - name: Download the sdn_advanced.xml file - uses: wei/wget@v1 - with: - args: https://www.treasury.gov/ofac/downloads/sanctions/1.0/sdn_advanced.xml + run: | + wget https://sanctionslistservice.ofac.treas.gov/api/PublicationPreview/exports/SDN_ADVANCED.ZIP + unzip SDN_ADVANCED.ZIP + ls -l - name: Generate TXT and JSON files for all assets run: | mkdir data - python3 generate-address-list.py XBT ETH XMR LTC ZEC DASH BTG ETC BSV BCH XVG USDC USDT XRP TRX ARB BSC -f JSON TXT -path ./data + python3 generate-address-list.py XBT ETH XMR LTC ZEC DASH BTG ETC BSV BCH XVG USDC USDT XRP TRX ARB BSC -f JSON TXT -path ./data -sdn SDN_ADVANCED.XML - name: Commit files run: | git config --local user.email "45324+github-actions[bot]@users.noreply.github.com"