Skip to content

Update references due to recent refactoring in TALib #36

Update references due to recent refactoring in TALib

Update references due to recent refactoring in TALib #36

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Publish application
run: |
cp ./src/TaTooIne.Demo/wwwroot/index.html ./src/TaTooIne.Demo/wwwroot/404.html
yarn --cwd ./src/TaTooIne.Demo/wwwroot/ install --silent --frozen-lockfile
dotnet publish -c Release ./src/TaTooIne.Demo/TaTooIne.Demo.csproj -o ./src/TaTooIne.Demo/publish
- name: Deploy
if: ${{ github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./src/TaTooIne.Demo/publish/wwwroot/