File tree Expand file tree Collapse file tree 4 files changed +46
-3
lines changed Expand file tree Collapse file tree 4 files changed +46
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Publish
2+ on :
3+ push :
4+ tags :
5+ - ' \d+.\d+.\d+'
6+
7+ permissions :
8+ contents : write
9+
10+ jobs :
11+ publish :
12+ name : Publish
13+ runs-on : ubuntu-latest
14+ timeout-minutes : 10
15+ strategy :
16+ fail-fast : false
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v1
21+ with :
22+ fetch-depth : 1
23+ submodules : true
24+
25+ - name : Setup Java
26+ uses : actions/setup-java@v1
27+ with :
28+ java-version : 17
29+ architecture : x64
30+ distribution : ' temurin'
31+
32+ - name : Publish to Nextflow registry
33+ env :
34+ NPR_API_KEY : ${{ secrets.NPR_API_KEY }}
35+ run : ./gradlew releasePluginIfNotExists -P version=${GITHUB_REF#refs/tags/}
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to the nf-prov plugin will be documented here.
44
55See [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
66
7+ ## [ 1.5.0] - 2025-09-04
8+
9+ - Use Nextflow Gradle plugin (#42 )
10+ - Declare config options with ConfigScope (#44 )
11+ - Add workflow outputs to WRROC report (#47 )
12+ - Remove legacy provenance format (#48 )
13+ - Use plugin registry (#50 )
14+
715## [ 1.4.0] - 2025-02-06
816
917- Add Workflow Run RO-Crate format (#39 )
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ install:
1818
1919# Publish the plugin
2020release :
21- ./gradlew releasePlugin
21+ ./gradlew releasePluginIfNotExists
Original file line number Diff line number Diff line change 11
22plugins {
3- id ' io.nextflow.nextflow-plugin' version ' 1.0.0-beta.6 '
3+ id ' io.nextflow.nextflow-plugin' version ' 1.0.0-beta.10 '
44}
55
6- version = ' 1.5.0 '
6+ // version is set when making a GitHub release
77
88nextflowPlugin {
99 nextflowVersion = ' 25.04.0'
You can’t perform that action at this time.
0 commit comments