new article #433
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: "Build and Deploy" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # - master | |
| paths-ignore: | |
| - .gitignore | |
| - README.md | |
| - LICENSE | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| # Allow one concurrent deployment | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| # submodules: true | |
| # If using the 'assets' git submodule from Chirpy Starter, uncomment above | |
| # (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets) | |
| - name: Setup Pages | |
| id: pages | |
| uses: actions/configure-pages@v4 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.3 | |
| bundler-cache: true | |
| - name: Cache Jekyll | |
| uses: actions/cache@v3 | |
| with: | |
| path: .jekyll-cache | |
| key: ${{ runner.os }}-jekyll-${{ hashFiles('_config.yml', '**/*.md') }} | |
| - name: Build site | |
| run: bundle exec jekyll build --incremental -d _site | |
| env: | |
| JEKYLL_ENV: production | |
| - name: deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./_site | |
| # if the repo you are deploying to is <username>.github.io, uncomment the line below. | |
| # if you are including the line below, make sure your source files are NOT in the master branch: | |
| publish_branch: master2 |