This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
libplugin: cleanly separate apply and unapplying payment route. #2
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: ReadMe RPC Sync | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'doc/**.md' | |
jobs: | |
rdme-rpc-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install requests module | |
run: python -m pip install requests | |
- name: Set environment variable and run | |
env: | |
README_API_KEY: ${{ secrets.README_API_KEY }} | |
run: python .github/scripts/sync-rpc-cmds.py |