Skip to content

Commit

Permalink
Merge pull request #12 from dmadison/script-updates
Browse files Browse the repository at this point in the history
Update GitHub scripts
  • Loading branch information
dmadison authored Sep 4, 2023
2 parents 676d684 + 6eb19ef commit 5403188
Show file tree
Hide file tree
Showing 3 changed files with 229 additions and 117 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Arduino CLI
uses: arduino/[email protected].1
uses: arduino/[email protected].2

- name: Install Board Platform
run: |
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Fetch Repository Reference Info
id: repo-info
run: |
Expand All @@ -21,21 +21,20 @@ jobs:
COMMIT_MSG=$PROJECT_NUMBER
if [ "$PROJECT_NUMBER" != "$GIT_SHA_SHORT" ]; then COMMIT_MSG+=" ($GITHUB_SHA)"; fi
echo "The project number is \"$PROJECT_NUMBER\" and the commit message is \"$COMMIT_MSG\""
echo "::set-output name=project-number::$PROJECT_NUMBER"
echo "::set-output name=commit-message::$COMMIT_MSG"
echo "project-number=$PROJECT_NUMBER" >> $GITHUB_OUTPUT
echo "commit-message=$COMMIT_MSG" >> $GITHUB_OUTPUT
- name: Install Doxygen
env:
DOXYGEN_VERSION: 1.9.3
DOXYGEN_VERSION: 1.9.7
run: |
wget -q https://www.doxygen.nl/files/doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
tar -xf doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
cd doxygen-${{ env.DOXYGEN_VERSION }} && sudo make install
sudo apt-get install libclang1-9 libclang-cpp9
- name: Install Themes
env:
DOXYGEN_AWESOME_VERSION: 2.0.3
DOXYGEN_AWESOME_VERSION: 2.2.1
working-directory: ./docs
run: |
git clone --depth 1 -b v${{ env.DOXYGEN_AWESOME_VERSION }} https://github.com/jothepro/doxygen-awesome-css
Expand Down
Loading

0 comments on commit 5403188

Please sign in to comment.