Skip to content

Commit

Permalink
tagged release
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Moussaud committed Sep 30, 2020
1 parent e32621f commit 734d8c0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/publish.yaml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/tagged-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew clean build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
./build/libs/xlr-jenkins-multibranch-plugin-*.jar

0 comments on commit 734d8c0

Please sign in to comment.