test preview version ci cd #1
Workflow file for this run
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
# ------------------------------------------------------------------------------ | ||
# <auto-generated> | ||
# | ||
# This code was generated. | ||
# | ||
# - To turn off auto-generation set: | ||
# | ||
# [GitHubActions (AutoGenerate = false)] | ||
# | ||
# - To trigger manual generation invoke: | ||
# | ||
# nuke --generate-configuration GitHubActions_continuous --host GitHubActions | ||
# | ||
# </auto-generated> | ||
# ------------------------------------------------------------------------------ | ||
name: continuous | ||
on: | ||
push: | ||
branches: | ||
- development | ||
pull_request: | ||
branches: | ||
- development | ||
jobs: | ||
ubuntu-latest: | ||
name: ubuntu-latest | ||
runs-on: ubuntu-latest | ||
env: | ||
Solution_Name: HolyClient.sln # Replace with your solution name, i.e. MyWpfApp.sln. | ||
#Test_Project_Path: your-test-project-path # Replace with the path to your test project, i.e. MyWpfApp.Tests\MyWpfApp.Tests.csproj. | ||
#Wap_Project_Directory: your-wap-project-directory-name # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package. | ||
#Wap_Project_Path: your-wap-project-path | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/cache@v3 | ||
with: | ||
Check failure on line 44 in .github/workflows/continuous.yml GitHub Actions / continuousInvalid workflow file
|
||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget- | ||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected] | ||
- name: 'Run: Preview' | ||
run: ./build.cmd Preview | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |