Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
stamepicmorg committed Sep 29, 2024
1 parent 74869a6 commit 04ce32c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:

strategy:
matrix:
configuration: [Debug, Release]
# configuration: [Debug, Release]
configuration: [Debug]

steps:
- name: Checkout code
Expand All @@ -30,6 +31,13 @@ jobs:
- name: Restore dependencies
run: dotnet restore

- name: Check current directory and files
run: |
echo "Current Directory: $(pwd)"
echo "Files in current directory:"
ls -Recurse
shell: pwsh

- name: Patch csproj version and assembly version
run: |
$csproj_files = Get-ChildItem -Path '**/*.csproj'
Expand Down

0 comments on commit 04ce32c

Please sign in to comment.