From 3ad493d830e900af7f04ae2f8b3a5ce8a0d2a661 Mon Sep 17 00:00:00 2001 From: sandro Date: Wed, 8 May 2024 12:05:43 -0300 Subject: [PATCH] ajuste workflow --- .github/workflow/build.yml | 38 ---------------------------- .github/workflows/dotnet-desktop.yml | 38 ---------------------------- 2 files changed, 76 deletions(-) delete mode 100644 .github/workflow/build.yml delete mode 100644 .github/workflows/dotnet-desktop.yml diff --git a/.github/workflow/build.yml b/.github/workflow/build.yml deleted file mode 100644 index 72f7924..0000000 --- a/.github/workflow/build.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: lifecycle - -on: - # push: - # branches: [ "main" ] - workflow_dispatch: - - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 6.0.x - - - name: Restore dependencies - run: dotnet restore - - - name: Build - run: dotnet build --no-restore - - - name: Test - run: dotnet test --no-build --verbosity normal - - - name: Dotnet Publish - run: dotnet publish --configuration Release -o ${{ github.workspace }}/demo - - - name: Upload App - uses: actions/upload-artifact@v1 - with: - name: app - path: ${{ github.workspace }}//demo \ No newline at end of file diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml deleted file mode 100644 index 71a2f0c..0000000 --- a/.github/workflows/dotnet-desktop.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: lifecycle - -on: - # push: - # branches: [ "main" ] - workflow_dispatch: - - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 6.0.x - - - name: Restore dependencies - run: dotnet restore - - - name: Build - run: dotnet build --no-restore - - - name: Test - run: dotnet test --no-build --verbosity normal - - - name: Dotnet Publish - run: dotnet publish --configuration Release -o ${{ github.workspace }}/demo - - - name: Upload App - uses: actions/upload-artifact@v1 - with: - name: app - path: ${{ github.workspace }}//demo