WiFi location service with sample #23
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: "Doc: Doxygen to Firebase (PR)" | |
on: pull_request | |
jobs: | |
deploy_doxygen_dev: | |
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 | |
- name: Deploy docs to dev | |
uses: FirebaseExtended/action-hosting-deploy@ac8041b3b04337509168113bf98b95879df22322 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_GOLIOTH }}' | |
projectId: golioth | |
target: docs-dev | |
entryPoint: docs | |
env: | |
FIREBASE_CLI_PREVIEWS: hostingchannels |