From be3f366c7ee47059f65cf2d81df2683f6fca9eef Mon Sep 17 00:00:00 2001 From: Renzo Poggio Date: Tue, 14 Jan 2025 02:05:00 -0300 Subject: [PATCH] Fix CI/CD --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8731bca..f7eac95 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,7 +5,7 @@ on: tags: "*" jobs: - build: + publish: runs-on: ubuntu-latest permissions: contents: write @@ -43,11 +43,11 @@ jobs: run: | mkdir release mkdir ./release/RF.TekaTeka - cp ./Libraries/SonicAudioLib.dll ./release/RF.TekaTeka/SonicAudioLib.dll + cp ./TekaTeka/bin/Release/net6.0/tja2fumen.dll ./release/RF.TekaTeka/tja2fumen.dll cp ./TekaTeka/bin/Release/net6.0/RF.TekaTeka.dll ./release/RF.TekaTeka/RF.TekaTeka.dll cp ./TekaTeka/bin/Release/net6.0/RF.TekaTeka.pdb ./release/RF.TekaTeka.pdb cd ./release - zip ./RF.TekaTeka.zip ./RF.TekaTeka/RF.TekaTeka.dll ./RF.TekaTeka/SonicAudioLib.dll + zip ./RF.TekaTeka.zip ./RF.TekaTeka/RF.TekaTeka.dll ./RF.TekaTeka/tja2fumen.dll - name: Create Release Page uses: softprops/action-gh-release@v2