Improve statistics: LOC from Dec 2025, releases, equal chart sizes #44
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 | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: deploy-website | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| uses: OpenAEC-Foundation/github/.github/workflows/deploy-site-with-pages.yml@main | |
| with: | |
| deploy_host: ${{ vars.DEPLOY_HOST }} | |
| deploy_port: ${{ vars.DEPLOY_PORT }} | |
| deploy_user: ${{ vars.DEPLOY_USER }} | |
| deploy_path: /var/www/open-aec.com | |
| rsync_excludes: | | |
| README.md | |
| LICENSE.md | |
| openaec-website.jsx | |
| secrets: | |
| deploy_ssh_key: ${{ secrets.DEPLOY_SSH_KEY }} |