feat: add documentation for all new nodes #51
This file contains hidden or 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: Deploy Website | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Deploy files to VPS | |
| run: | | |
| curl -X POST https://ci.deforge.io/prod/docs \ | |
| -H "x-api-key: ${{ secrets.CI_API_KEY }}" \ | |
| -H "Content-Type: application/json" |