Skip to content

Commit

Permalink
Create prerelease.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed May 24, 2023
1 parent 3670480 commit 39d48e8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/prerelease.yaml
@@ -0,0 +1,35 @@
name: "pre-release"

on:
push:
branches:
- "master"

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2.3.4
with:
lfs: true
fetch-depth: 0

- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '17'

# burpsuite_pro.jar is not available, disable tests
- name: Build
run: ./gradlew build -x test

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
automatic_release_tag: "latest"
files: |
releases/*.jar
id: "automatic_releases"

0 comments on commit 39d48e8

Please sign in to comment.