Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Graicc committed Jun 11, 2021
0 parents commit 90018f1
Show file tree
Hide file tree
Showing 20 changed files with 1,165 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CD

on:
push:
branches: [master]
pull_request:
branches: [master]

workflow_dispatch:

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: |
dotnet publish -c Release
copy LICENSE WriteAPI\bin\Release\netcoreapp3.1\publish\
- name: Upload Write API
uses: actions/upload-artifact@v2
with:
name: Write API
path: WriteAPI/bin/Release/netcoreapp3.1/publish/
- name: Upload Sample Project
uses: actions/upload-artifact@v2
with:
name: Sample Project
path: SampleProject/bin/Release/netcoreapp3.1/publish/
Loading

0 comments on commit 90018f1

Please sign in to comment.