client: libcoap: use golioth_sys_free() instead of free()
#132
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: "Doc: Doxygen to Firebase (Main)" | |
| 'on': | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy_doxygen_prod: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Doxygen | |
| run: | | |
| sudo apt install wget graphviz | |
| wget https://www.doxygen.nl/files/doxygen-1.10.0.linux.bin.tar.gz | |
| tar -xvf doxygen-1.10.0.linux.bin.tar.gz | |
| cd doxygen-1.10.0 | |
| sudo make install | |
| - name: Update submodule | |
| run: git submodule update --init --recursive docs/doxygen/doxygen-awesome-css | |
| - name: Generate Doxygen | |
| run: | | |
| cd docs/doxygen | |
| doxygen | |
| - uses: FirebaseExtended/action-hosting-deploy@ac8041b3b04337509168113bf98b95879df22322 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_GOLIOTH }}' | |
| channelId: live | |
| projectId: golioth | |
| target: docs-prod | |
| entryPoint: docs | |
| env: | |
| FIREBASE_CLI_PREVIEWS: hostingchannels |