feat: ADD new post - 2026-03-05-android-https-cleartext-capacitor.md #306
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: Jekyll Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.0' # 필요시 버전 조정 | |
| - run: bundle install | |
| - name: Update menu post counts | |
| run: ruby scripts/update_menu_counts.rb | |
| - run: bundle exec jekyll build | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
| publish_dir: ./_site | |