Skip to content

Bump JetBrains.ReSharper.SDK from 2024.1.2 to 2024.1.3 in /src/dotnet #19

Bump JetBrains.ReSharper.SDK from 2024.1.2 to 2024.1.3 in /src/dotnet

Bump JetBrains.ReSharper.SDK from 2024.1.2 to 2024.1.3 in /src/dotnet #19

Workflow file for this run

name: Create
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET 6 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.x'
- name: Build Plugin
run: ./gradlew buildPlugin
- name: Publish Artifact
uses: actions/[email protected]
with:
name: Artifacts
path: output
retention-days: 7
- name: Publish plugins to jetbrains
run: ./gradlew publishPlugin
env:
PublishKey: ${{ secrets.PublishKey }}
if: github.event_name != 'pull_request'