clarify overloading int with Style
#5
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 README to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main # Adjust if your default branch is different | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Install Pandoc | |
| run: sudo apt-get install -y pandoc | |
| - name: Convert README.md to index.html | |
| run: pandoc README.md -f markdown -t html -s -o index.html --metadata title="BC API tricks" | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_branch: gh-pages | |
| publish_dir: ./ |