Skip to content

Commit

Permalink
add oids map refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
ollyg committed Dec 26, 2024
1 parent bfc600e commit fff48bd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/update_products.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ jobs:
curl --silent --location --remote-name "https://mibbrowser.online/mibs_json/$mib.json"; \
done
- name: updateoidsmap
run: |
mkdir -p EXTRAS/products
cd EXTRAS/products
ls -1 | \
while read json; do \
cat $json | ../scripts/util/pysmi-json-to-oid-cache.py >> ../reports/products_oids.new; \
done
mv ../reports/products_oids.new ../reports/products_oids
- name: Commit files
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
Expand Down

0 comments on commit fff48bd

Please sign in to comment.