Merge pull request #106 from HOSTED-POWER/BjarneVO-KBrestructure #392
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: Publish Retype powered website to GitHub Pages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| name: Publish to retype branch | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 7.0.x | |
| - uses: retypeapp/action-build@v3.6.0 | |
| with: | |
| license: ${{ secrets.RETYPE_SECRET }} | |
| - uses: retypeapp/action-github-pages@latest | |
| with: | |
| update-branch: true |