Update final dependency #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |