Skip to content

Commit ca071e4

Browse files
github-actions[bot]jagedn
authored andcommitted
Releasing version 0.0.1-rc1
1 parent 7833492 commit ca071e4

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
outputs:
1818
VERSION: ${{ steps.vars.outputs.VERSION }}
19+
permissions:
20+
contents: read
21+
issues: write
1922
steps:
2023
- name: Checkout
2124
uses: actions/checkout@v3
@@ -43,6 +46,9 @@ jobs:
4346
release:
4447
needs: [ precheck ]
4548
runs-on: ubuntu-latest
49+
permissions:
50+
contents: read
51+
issues: write
4652
steps:
4753
- name: Checkout
4854
uses: actions/checkout@v3
@@ -57,4 +63,6 @@ jobs:
5763
distribution: ${{ env.JAVA_DISTRO }}
5864

5965
- name: Build
60-
run: ./gradlew releasePlugin
66+
run: ./gradlew build releasePlugin -x test
67+
env:
68+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,8 @@ nextflowPlugin {
6464
github {
6565
repository = project.findProperty('github_repository')
6666
userName = project.findProperty('github_username')
67-
authToken = project.findProperty('github_access_token')
67+
authToken = System.getenv('GITHUB_TOKEN')
6868
email = project.findProperty('github_commit_email')
69-
70-
indexUrl = 'https://github.com/nextflow-io/plugins/main/plugins.json'
7169
}
7270
}
7371
}

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#Generated by nf-plugin-generator
22
#Mon Apr 14 17:08:04 CEST 2025
33
classname=com.incsteps.nextflow.cachebrowser.Plugin
4-
github_commit_email=
4+
github_commit_email=github-actions[bot]@users.noreply.github.com
55
github_repository=incsteps/nf-cachebrowser
66
github_username=jagedn
77
group=nextflow.plugin
88
nextflow_version=24.12.0-edge
9-
provider=jagedn
9+
provider=Incremental Steps Software Solutions
1010
micronautVersion=4.6.2
11-
version=0.0.0
11+
version=0.0.1

0 commit comments

Comments
 (0)