Skip to content

Fix remaining actions #62

Fix remaining actions

Fix remaining actions #62

Workflow file for this run

name: Run build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
# - name: Setup MSBuild Path
# uses: microsoft/setup-msbuild@v1
- name: Setup NuGet
uses: NuGet/setup-nuget@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-disabled: true
# Exclude the local build-cache and keyrings from the directories cached.
# gradle-home-cache-excludes: |
# build
- name: Execute Gradle build
run: |
chmod +x ./gradlew
./gradlew buildPlugin
- name: Publish built artifacts
uses: actions/upload-artifact@v3
with:
name: BSMT-Rider.zip
path: output/
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`