chore(release): 0.1.3 #11
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: Build | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.JS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 3.1.301 | |
- name: Restore | |
run: dotnet tool restore | |
- name: Paket install | |
run: dotnet paket install | |
- name: Build | |
run: dotnet fake build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: my-artifact | |
path: release |