Skip to content

Update Master List

Update Master List #55

Workflow file for this run

name: Update Master List
on:
schedule:
- cron: '0 0 1 * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update MasterList file
run : wget "https://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/ElekAusweise/CSCA/GermanMasterList.zip?__blob=publicationFile" -O- | zcat | openssl cms -inform DER -verify -noverify -out app/src/main/assets/masterList
- name: Commit new masterList
run: |
set +e
git add .
git config user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
git commit -m "Update masterList"
git push "https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY"