2025 Day 1 and Day 2 #64
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: Generate svg stats | |
| on: [push] | |
| jobs: | |
| stats: | |
| name: Generate stats | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Ready assets directory | |
| run: mkdir -p assets | |
| - name: Generate lang statistics svgs | |
| run: docker build . --output=./assets/ | |
| - name: Push to branch | |
| uses: s0/git-publish-subdir-action@develop | |
| env: | |
| REPO: self | |
| BRANCH: artifacts | |
| FOLDER: assets | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |