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