version increase #462
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy TryMudEx | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| workflow_dispatch: | |
| env: | |
| AZURE_WEBAPP_NAME: TryMudEx | |
| AZURE_WEBAPP_PACKAGE_PATH: .\published | |
| CONFIGURATION: Release | |
| DOTNET_CORE_VERSION: 10.0.x | |
| WORKING_DIRECTORY: TryMudEx | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_CORE_VERSION }} | |
| - name: Restore | |
| run: dotnet restore "${{ env.WORKING_DIRECTORY }}" | |
| - name: Build | |
| run: dotnet build "${{ env.WORKING_DIRECTORY }}/TryMudEx.Server/TryMudEx.Server.csproj" --configuration ${{ env.CONFIGURATION }} --no-restore | |
| # - name: Test | |
| # run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build | |
| - name: Publish | |
| run: dotnet publish "${{ env.WORKING_DIRECTORY }}/TryMudEx.Server/TryMudEx.Server.csproj" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}" | |
| - name: Publish Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: webapp | |
| path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
| deploy: | |
| runs-on: windows-latest | |
| needs: build | |
| steps: | |
| - name: Download artifact from build job | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: webapp | |
| path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |
| - name: Deploy to Azure WebApp | |
| uses: azure/webapps-deploy@v2 | |
| with: | |
| app-name: ${{ env.AZURE_WEBAPP_NAME }} | |
| publish-profile: ${{ secrets.TryMudEx_1D49 }} | |
| package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} |