Fix indentation

This commit is contained in:
2025-11-04 17:57:36 +09:00
parent b2fda1c01b
commit f20734ee76

View File

@@ -26,15 +26,15 @@ jobs:
- name: Pack all projects - name: Pack all projects
run: | run: |
set -e set -e
for projfile in $(find . -name "*.csproj"); do for projfile in $(find . -name "*.csproj"); do
if grep -q "<IsPackable>true</IsPackable>" "$projfile"; then if grep -q "<IsPackable>true</IsPackable>" "$projfile"; then
echo "Packing $projfile..." echo "Packing $projfile..."
if ! dotnet pack "$projfile" -c Release -o ./artifacts; then if ! dotnet pack "$projfile" -c Release -o ./artifacts; then
echo "⚠️ Failed to pack $projfile" echo "Failed to pack $projfile"
fi fi
fi fi
done done
- name: Publish all packages - name: Publish all packages
env: env: