Bump version #3
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
on: | |
push: | |
tags: | |
- 1.** | |
env: | |
APT: sudo apt install -y --no-install-recommends | |
jobs: | |
deb_cloudsmith: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: $APT libeigen3-dev | |
- run: make deb_install_deps_cloudsmith | |
- run: env CLOUDSMITH_API_KEY=${{ secrets.CLOUDSMITH_API_KEY }} make deb_cloudsmith_any | |
gh_pages: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- run: $APT doxygen | |
- run: make dox | |
- run: | | |
cd doc/gh-pages | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add * | |
git commit -a -m "Automated update ${{ github.ref_name }}" | |
git push |