Update and rename Build for Windows to Build for Windows.yml #1
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: No Test Release Windows | ||
env: | ||
PATH_TO_PROJECTS: ${{ github.workspace }}\src | ||
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output\ | ||
NUGET_SOURCE_URL: 'https://api.nuget.org/v3/index.json' | ||
GITHUB_PACKAGES_URL: 'https://nuget.pkg.github.com/asv-soft/index.json' | ||
jobs: | ||
deploy: | ||
name: 'Deploy' | ||
runs-on: windows-latest | ||
steps: | ||
- name: 'Checkout' | ||
uses: actions/checkout@v3 | ||
- name: Setup .Net | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: | | ||
8.x.x | ||
- name: Getting version | ||
id: version | ||
uses: battila7/get-version-action@v2 | ||
- name: Checking version | ||
run: echo ${{ steps.version.outputs.version-without-v }} | ||
- name: Setting the project version | ||
run: | | ||
dotnet tool install -g dotnet-setversion | ||
setversion ${{ steps.version.outputs.version-without-v }} ${{ env.PATH_TO_PROJECTS }}\Asv.Drones.Gui.Desktop\Asv.Drones.Gui.Desktop.csproj | ||
- name: Restoring dependencies | ||
run: | | ||
cd src | ||
dotnet restore | ||
steps: | ||
- name: Building projects | ||
with: | ||
repo_token: "${{ secrets.GIHUB_NUGET_AUTH_TOKEN }}" | ||
prerelease: false | ||
run: | | ||
cd src | ||
dotnet build -c Release | ||
files: | | ||
*Setup.exe | ||
*.zip |