Skip to content

Commit ac7c64a

Browse files
committed
v1.0.2.1 fixing actions jobs supposed to be triggered at release, hopefully
1 parent faacc24 commit ac7c64a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/publish-javadoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Deploy Javadoc
66

77
on:
88
release:
9-
types: [created] #alternatives: released, published,
9+
types: [published] #alternatives: released, published, created
1010
#push:
1111
#branches:
1212
#- main

.github/workflows/publish-to-maven-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
#push:
1515
#branches: [ "main" ]
1616
release:
17-
types: [created]
17+
types: [published]
1818
jobs:
1919
publish:
2020
runs-on: ubuntu-latest

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cff-version: 1.2.0
22
title: ART2a-Clustering-for-Java
3-
version: 1.0.0.0
3+
version: 1.0.2.1
44
message: "If you use this software, please cite it as below."
55
type: software
66
authors:
@@ -19,7 +19,7 @@ authors:
1919
- family-names: "Zielesny"
2020
given-names: "Achim"
2121
orcid: "https://orcid.org/0000-0003-0722-4229"
22-
date-released: 2023-06-23
22+
date-released: 2023-07-05
2323
doi: "10.5281/zenodo.8075213"
2424
url: "https://github.com/JonasSchaub/ART2a-Clustering-for-Java"
2525
license: GPL-3.0

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ plugins {
3131
group = 'io.github.jonasschaub'
3232
archivesBaseName = 'ART2a-Clustering-for-Java'
3333
//see also version for publishing below!
34-
version = '1.0.2.0'
34+
version = '1.0.2.1'
3535

3636
//sourceCompatibility = 1.17
3737

@@ -99,7 +99,7 @@ publishing {
9999
groupId = 'io.github.jonasschaub'
100100
artifactId = 'ART2a-Clustering-for-Java'
101101
//note: this version has been published, do not try to publish it again! versions 1.0.1.0 and 1.0.1.1 were also already used for publishing!
102-
version = '1.0.2.0'
102+
version = '1.0.2.1'
103103

104104
from components.java
105105

0 commit comments

Comments
 (0)