Compare commits
2 Commits
aaf0ecc548
...
dc4abf3774
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc4abf3774 | ||
|
|
01baff1f5b |
@@ -18,25 +18,26 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
run: |
|
||||||
with:
|
sudo apt-get update -qq
|
||||||
python-version: '3.12'
|
sudo apt-get install -y python3 python3-pip
|
||||||
|
python3 --version
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install requests beautifulsoup4 pyyaml
|
run: python3 -m pip install --user requests beautifulsoup4 pyyaml
|
||||||
|
|
||||||
- name: Check Architecture Center links
|
- name: Check Architecture Center links
|
||||||
id: check
|
id: check
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
python tools/refresh_arch_catalog.py --check-links 2>&1 | tee /tmp/link-check.txt
|
python3 tools/refresh_arch_catalog.py --check-links 2>&1 | tee /tmp/link-check.txt
|
||||||
echo "exit_code=$?" >> $GITHUB_OUTPUT
|
echo "exit_code=$?" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Check SKU catalog freshness
|
- name: Check SKU catalog freshness
|
||||||
id: sku
|
id: sku
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
python tools/refresh_sku_catalog.py --validate 2>&1 | tee -a /tmp/link-check.txt
|
python3 tools/refresh_sku_catalog.py --validate 2>&1 | tee -a /tmp/link-check.txt
|
||||||
|
|
||||||
- name: Create issue if problems found
|
- name: Create issue if problems found
|
||||||
if: steps.check.outcome == 'failure'
|
if: steps.check.outcome == 'failure'
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,6 +5,7 @@ __pycache__/
|
|||||||
output/
|
output/
|
||||||
*.pptx
|
*.pptx
|
||||||
!examples/sample-output/*.pptx
|
!examples/sample-output/*.pptx
|
||||||
|
!templates/Oracle_PPT-template_FY26.pptx
|
||||||
|
|
||||||
# OCI Toolkit binary (download from Oracle, don't commit)
|
# OCI Toolkit binary (download from Oracle, don't commit)
|
||||||
kb/diagram/OCI Library.xml
|
kb/diagram/OCI Library.xml
|
||||||
|
|||||||
BIN
templates/Oracle_PPT-template_FY26.pptx
Normal file
BIN
templates/Oracle_PPT-template_FY26.pptx
Normal file
Binary file not shown.
Reference in New Issue
Block a user