diff --git a/.forgejo/workflows/Server.yaml b/.forgejo/workflows/Server.yaml index eabe4a6..36e244b 100644 --- a/.forgejo/workflows/Server.yaml +++ b/.forgejo/workflows/Server.yaml @@ -1,4 +1,4 @@ -name: Server AOT Publish +name: Server Build on: push: @@ -12,13 +12,13 @@ jobs: runs-on: dotnet steps: - - name: Checkout code + - name: Checkout uses: actions/checkout@v4 - - name: Restore dependencies + - name: Dotnet Restore run: dotnet restore - - name: Publish Native AOT + - name: Build Native run: | dotnet publish ./LarpixServer/LarpixServer.csproj \ -c Release \ @@ -33,5 +33,5 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v3 with: - name: native-binary - path: ./publish/ \ No newline at end of file + name: LarpixServer + path: ./publish/LarpixServer \ No newline at end of file diff --git a/.forgejo/workflows/Voice.yaml b/.forgejo/workflows/Voice.yaml index bbf5a37..85f43c9 100644 --- a/.forgejo/workflows/Voice.yaml +++ b/.forgejo/workflows/Voice.yaml @@ -1,4 +1,4 @@ -name: Server AOT Publish +name: Voice Build on: push: @@ -12,13 +12,13 @@ jobs: runs-on: dotnet steps: - - name: Checkout code + - name: Checkout uses: actions/checkout@v4 - - name: Restore dependencies + - name: Dotnet Restore run: dotnet restore - - name: Publish Native AOT + - name: Build Native run: | dotnet publish ./LarpixVoice/LarpixVoice.csproj \ -c Release \ @@ -33,5 +33,5 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v3 with: - name: native-binary - path: ./publish/ \ No newline at end of file + name: LarpixVoice + path: ./publish/LarpixVoice \ No newline at end of file