Skip to content

Commit

Permalink
v1.0.2.1 fixing actions jobs supposed to be triggered at release, hop…
Browse files Browse the repository at this point in the history
…efully
  • Loading branch information
JonasSchaub committed Jul 5, 2023
1 parent faacc24 commit ac7c64a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Deploy Javadoc

on:
release:
types: [created] #alternatives: released, published,
types: [published] #alternatives: released, published, created
#push:
#branches:
#- main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
#push:
#branches: [ "main" ]
release:
types: [created]
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
title: ART2a-Clustering-for-Java
version: 1.0.0.0
version: 1.0.2.1
message: "If you use this software, please cite it as below."
type: software
authors:
Expand All @@ -19,7 +19,7 @@ authors:
- family-names: "Zielesny"
given-names: "Achim"
orcid: "https://orcid.org/0000-0003-0722-4229"
date-released: 2023-06-23
date-released: 2023-07-05
doi: "10.5281/zenodo.8075213"
url: "https://github.com/JonasSchaub/ART2a-Clustering-for-Java"
license: GPL-3.0
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ plugins {
group = 'io.github.jonasschaub'
archivesBaseName = 'ART2a-Clustering-for-Java'
//see also version for publishing below!
version = '1.0.2.0'
version = '1.0.2.1'

//sourceCompatibility = 1.17

Expand Down Expand Up @@ -99,7 +99,7 @@ publishing {
groupId = 'io.github.jonasschaub'
artifactId = 'ART2a-Clustering-for-Java'
//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!
version = '1.0.2.0'
version = '1.0.2.1'

from components.java

Expand Down

0 comments on commit ac7c64a

Please sign in to comment.