Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Bump tower cli version to v0.5 #11

Merged
merged 2 commits into from
Mar 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# nf-core/tower-action: Changelog

## [[v3.0](https://github.com/nf-core/tower-action/releases/tag/v3.0)]

### :warning: BREAKING CHANGE :warning

The new version 0.5 of the Tower CLI only supports full URLs and no longer works with short-form
GitHub repository names (`user/repo`). The full GitHub repository URL now needs to be used
(`https://github.com/user/repo`).

If you are setting `pipeline` in your workflow, please update it accordingly.
Note that the default value is the current repo, so in most cases this value
does not need to be specified.

* Bump Tower CLI to version 0.5
* Prefix the default value for `pipeline` with `https://github.com/` to match changed behaviour in the Tower CLI

## [[v2.2](https://github.com/nf-core/tower-action/releases/tag/v2.2)] - 2022-01-12

Add option to pass nextflow config to Tower CLI.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine

ARG TOWER_CLI_VERSION="0.4"
ARG TOWER_CLI_VERSION="0.5"

# Install Tower CLI
RUN apk add --no-cache curl ca-certificates
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ Default: `api.tower.nf`

### `pipeline`

**[Optional]** Pipeline repository name.
**[Optional]** Workspace pipeline name or full pipeline URL.

For example, `nf-core/rnaseq` or `https://github.com/nf-core/sarek`.
For example, `https://github.com/nf-core/sarek`.
Can also be the name of a preconfigured pipeline in Nextflow Tower.

Default: The current GitHub repository (`github.repository`).
Default: The current GitHub repository (`https://github.com/${{github.repository}}`).

### `revision`

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ inputs:
default: https://api.tower.nf
pipeline:
description: Pipeline repository
default: ${{ github.repository }}
default: https://github.com/${{ github.repository }}
ewels marked this conversation as resolved.
Show resolved Hide resolved
required: false
revision:
description: Pipeline revision (release / branch)
Expand Down