docs: fix duplicate 'the' in texture tutorial (#2530) #11
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: Website Build | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - "documentation/**/*" | |
| - ".github/workflows/publish-site.yml" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| Build: | |
| environment: github-pages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: "develop/3.0" | |
| ssh-key: ${{ secrets.SILK_ACTIONS_DEPLOY_KEY }} | |
| - run: | | |
| git submodule update --init --recommend-shallow eng/submodules/silk.net-2.x | |
| cd eng/submodules/silk.net-2.x | |
| git fetch origin main | |
| git checkout FETCH_HEAD | |
| cd ../../.. | |
| git add eng/submodules/silk.net-2.x | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "The Silk.NET Automaton" | |
| git commit -m "Update Silk.NET 2.X submodule for website" | |
| git push |