From b841d3ebaee3fdfa8cd5016392f84d0838e07213 Mon Sep 17 00:00:00 2001 From: Diogo Trindade Date: Fri, 8 Mar 2024 15:42:52 +0000 Subject: [PATCH] remove .net install step, comes by default in the image --- .github/workflows/build.yml | 5 ----- .github/workflows/template.yml | 7 +------ 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 696cad3..355e190 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '7.0.x' - - name: Clone uses: actions/checkout@v2 diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml index dd3d82c..d1e5fc7 100644 --- a/.github/workflows/template.yml +++ b/.github/workflows/template.yml @@ -4,7 +4,7 @@ on: [push] jobs: run-templating: - # Don't run this in the template repo or more than once in the forked repo. Check for the presence of the ".template" file + # Don't run this in the template repo or more than once in the forked repo. Check for the presence of the ".template" file if: ${{ github.repository != 'Artemis-RGB/Artemis.PluginTemplate' && '[ -f .template ]' }} runs-on: ubuntu-latest permissions: @@ -20,11 +20,6 @@ jobs: fetch-depth: 0 ref: ${{ github.head_ref }} - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '7.0.x' - - name: Install Artemis templates run: dotnet new install ArtemisRGB.Templates