add codes to policyAlignment.csv and update IDS sustainability elements Funding source and Policy coherence #1523
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
cache-dependency-path: '**/requirements*.txt' | |
- run: pip install -r requirements.txt | |
- if: github.repository == 'open-contracting/standard_profile_template' | |
run: make update extract | |
- run: make | |
# Disable linkcheck as it is too slow for development. | |
# - run: | | |
# make linkcheck | |
# find . \( -name output.json -o -name output.txt \) -exec rm -r "{}" \; | |
- run: pytest -W error | |
# Deploy the built documentation to the staging directory. | |
- if: github.event_name == 'push' | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.PRIVATE_KEY }} | |
known_hosts: standard.open-contracting.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGveFGTJ9yyObNGDUCUyzyFkm6Kzh3YqIt1qB7B/KU6E | |
- if: github.event_name == 'push' | |
uses: bcomnes/netrc-creds@v3 | |
with: | |
machine: standard.open-contracting.org | |
login: manage | |
password: ${{ secrets.ELASTICSEARCH_PASSWORD }} | |
- if: github.event_name == 'push' && success() && github.repository != 'open-contracting/standard_profile_template' | |
env: | |
PATH_PREFIX: infrastructure/ | |
PRODUCTION: ${{ startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/latest' || github.ref == 'refs/heads/0.9' }} | |
RELEASE: ${{ startsWith(github.ref, 'refs/tags') }} | |
VERSION: "0.9" | |
shell: bash | |
run: curl -sS https://raw.githubusercontent.com/open-contracting/deploy/main/deploy-docs.sh | bash - |