Skip to content

Commit c839156

Browse files
committed
Revert "Enable automated plugin release (#130)"
This reverts commit bdfc72e.
1 parent bdfc72e commit c839156

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
lines changed

.github/release-drafter.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_extends: .github
2+
tag-template: pubsub-light-$NEXT_MINOR_VERSION

.github/workflows/cd.yaml

-19
This file was deleted.

.github/workflows/release-drafter.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release Drafter
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
update_release_draft:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: release-drafter/release-drafter@v6
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.mvn/maven.config

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
-Pconsume-incrementals
22
-Pmight-produce-incrementals
3-
-Dchangelist.format=%d.v%s

pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@
99
</parent>
1010

1111
<artifactId>pubsub-light</artifactId>
12-
<version>${changelist}</version>
12+
<version>${revision}${changelist}</version>
1313
<packaging>hpi</packaging>
1414

1515
<name>Jenkins Pub-Sub "light" Bus</name>
1616
<description>A simple Publish-Subscribe light-weight event bus for Jenkins</description>
1717
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
1818

1919
<properties>
20-
<changelist>999999-SNAPSHOT</changelist>
20+
<revision>1.19</revision>
21+
<changelist>-SNAPSHOT</changelist>
2122
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
2223
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
2324
<jenkins.baseline>2.361</jenkins.baseline>

0 commit comments

Comments
 (0)