Configure package publishing via GH Actions #4
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: continuous | |
on: [push] | |
jobs: | |
windows-latest: | |
name: windows-latest | |
runs-on: windows-latest | |
env: | |
GitHubAuthenticationToken: ${{ secrets.GITHUB_TOKEN }} | |
FeedzApiKey: ${{ secrets.FEEDZPUSHAPIKEY }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Tests | |
run: ./build.ps1 Tests -Configuration Debug | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test Results (${{ runner.os }}) | |
path: output/**/*_testresults.xml | |
- name: Push+PublishGitHubRelease | |
run: ./build.ps1 Push+PublishGitHubRelease |