Added link to coolest projects, removed :David #69
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 to GitHub Pages | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| github-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "2.7" # Specify the Ruby version here | |
| bundler-cache: true # Automatically cache and install gems | |
| - name: Update RubyGems | |
| run: | | |
| gem update --system 3.3.22 | |
| - uses: helaili/jekyll-action@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| target_branch: "gh-pages" |