Skip to content

Update github actions pipeline #14

Update github actions pipeline

Update github actions pipeline #14

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
- name: Install .NET 6 SDK
uses: actions/setup-dotnet
with:
dotnet-version: '6.x'
- name: Build Plugin
run: ./gradlew buildPlugin
- name: Publish Artifact
uses: actions/upload-artifact
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'