-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding github workflow file. #1
base: master
Are you sure you want to change the base?
Conversation
uses: actions/upload-artifact@v2 | ||
with: | ||
name: DLL Build Result | ||
path: ./.fake/*.dll |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this I think should be 'bin'
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 3.1.101 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be whatever it is for .net 4.6.
not even sure that github actions support it you will need to check it since .net 4.6 isn't cross platform.
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be called .net 4.6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added another workflow file that uses .net framework
cd69528
to
3c36a2e
Compare
add bin directory as restination.
Adding Github workflow action build file. This file uses the build.cmd file to build and test the repo. Also it add the generated dll file as an artifact to workflow run to be used.