Skip to content

Commit d11f315

Browse files
authored
Merge pull request #1 from esnya/copilot/fix-actions-failure
Fix CI workflow to reference WhileLoopTimeout instead of FluxLoopTweaks
2 parents 52f8a57 + 62092cd commit d11f315

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -82,28 +82,28 @@ jobs:
8282
ResoniteAssembliesDir: ${{ env.RESONITE_INSTALL_DIR }}
8383
shell: bash
8484
run: |
85-
dotnet restore FluxLoopTweaks.sln
85+
dotnet restore WhileLoopTimeout.sln
8686
8787
- name: Verify formatting
8888
env:
8989
ResoniteAssembliesDir: ${{ env.RESONITE_INSTALL_DIR }}
9090
shell: bash
9191
run: |
92-
dotnet format FluxLoopTweaks.sln --verify-no-changes --no-restore
92+
dotnet format WhileLoopTimeout.sln --verify-no-changes --no-restore
9393
9494
- name: Build
9595
env:
9696
ResoniteAssembliesDir: ${{ env.RESONITE_INSTALL_DIR }}
9797
shell: bash
9898
run: |
99-
dotnet build FluxLoopTweaks.sln --configuration Release --no-restore
99+
dotnet build WhileLoopTimeout.sln --configuration Release --no-restore
100100
101101
- name: Test
102102
env:
103103
ResoniteAssembliesDir: ${{ env.RESONITE_INSTALL_DIR }}
104104
shell: bash
105105
run: |
106-
dotnet test FluxLoopTweaks.sln --configuration Release --no-build
106+
dotnet test WhileLoopTimeout.sln --configuration Release --no-build
107107
108108
- name: Prepare release assets
109109
if: startsWith(github.ref, 'refs/tags/v')
@@ -112,16 +112,16 @@ jobs:
112112
set -euo pipefail
113113
artifacts_dir=release-artifacts
114114
mkdir -p "$artifacts_dir"
115-
cp src/FluxLoopTweaks/bin/Release/net9.0/FluxLoopTweaks.dll "$artifacts_dir/FluxLoopTweaks.dll"
116-
if [ -f src/FluxLoopTweaks/bin/Release/net9.0/FluxLoopTweaks.pdb ]; then
117-
cp src/FluxLoopTweaks/bin/Release/net9.0/FluxLoopTweaks.pdb "$artifacts_dir/FluxLoopTweaks.pdb"
115+
cp src/WhileLoopTimeout/bin/Release/net9.0/WhileLoopTimeout.dll "$artifacts_dir/WhileLoopTimeout.dll"
116+
if [ -f src/WhileLoopTimeout/bin/Release/net9.0/WhileLoopTimeout.pdb ]; then
117+
cp src/WhileLoopTimeout/bin/Release/net9.0/WhileLoopTimeout.pdb "$artifacts_dir/WhileLoopTimeout.pdb"
118118
fi
119119
120120
- name: Upload release artifacts
121121
if: startsWith(github.ref, 'refs/tags/v')
122122
uses: actions/upload-artifact@v4
123123
with:
124-
name: flux-loop-tweaks
124+
name: while-loop-timeout
125125
path: release-artifacts
126126
if-no-files-found: error
127127

@@ -135,15 +135,15 @@ jobs:
135135
- name: Download build artifacts
136136
uses: actions/download-artifact@v4
137137
with:
138-
name: flux-loop-tweaks
138+
name: while-loop-timeout
139139
path: release-artifacts
140140

141141
- name: Publish GitHub release
142142
uses: softprops/action-gh-release@v2
143143
with:
144144
tag_name: ${{ github.ref_name }}
145-
name: Flux Loop Tweaks ${{ github.ref_name }}
145+
name: While Loop Timeout ${{ github.ref_name }}
146146
generate_release_notes: true
147147
files: |
148-
release-artifacts/FluxLoopTweaks.dll
149-
release-artifacts/FluxLoopTweaks.pdb
148+
release-artifacts/WhileLoopTimeout.dll
149+
release-artifacts/WhileLoopTimeout.pdb

0 commit comments

Comments
 (0)