Update broken link to Lambda Factory website #34
This file contains 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: CI | |
on: | |
push: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.200 | |
- name: Restore tools | |
run: dotnet tool restore | |
- name: Run Paket | |
run: dotnet paket restore | |
- name: Run Fornax | |
run: dotnet fornax build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_public | |
publish_branch: master | |
force_orphan: true | |
user_name: Krzysztof-Cieslak | |
user_email: [email protected] | |
cname: ionide.io |