Remove 'Try it!' section from shader.md #272
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
| on: push | |
| name: Master branch CI | |
| jobs: | |
| jekyll-latest: | |
| name: Build docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: git config --global --add safe.directory '*' | |
| - name: Bundler Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: vendor/bundle | |
| key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gems- | |
| - name: Build & Deploy to GitHub Pages | |
| uses: jcelerier/jekyll4-deploy-gh-pages@master | |
| if: ${{ contains('refs/heads/dev refs/heads/staging refs/heads/production refs/heads/main refs/heads/master', github.ref) }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB }} | |
| GITHUB_REPOSITORY: ossia/score-docs | |
| GITHUB_ACTOR: oscar | |
| - name: Build | |
| uses: jcelerier/jekyll4-deploy-gh-pages@master | |
| if: ${{ !contains('refs/heads/dev refs/heads/staging refs/heads/production refs/heads/main refs/heads/master', github.ref) }} | |