Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
Create build-temp-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
celedev97 authored Nov 12, 2023
1 parent 6875c3c commit 3975666
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-temp-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build temp release based on main branch

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: Build with Maven
run: mvn -B package --file pom.xml

- uses: ncipollo/release-action@v1
with:
artifacts: "target/*.jar"
allowUpdates: true
body: "temporary automatic release, don't use this"
prerelease: true

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
#- name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6

0 comments on commit 3975666

Please sign in to comment.