Skip to content

Commit

Permalink
Generate builds for prerelease action
Browse files Browse the repository at this point in the history
  • Loading branch information
manodnyab committed Apr 1, 2024
1 parent 487b4d5 commit 193a602
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Prerelease
on:
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name for release'
required: false
default: prerelease
push:
branches: [manodnyb/addPrerelease3]


jobs:
generate_artifact:
strategy:
matrix:
supported_versions: [ '2023.3', '2023.2', '2023.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.x'

- name: Generate artifact
run: |
./gradlew -PideProfileName=${{ matrix.supported_versions }} :plugin-toolkit:intellij:buildPlugin

0 comments on commit 193a602

Please sign in to comment.