mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 17:59:54 +00:00
Compare commits
5 commits
fe166f9eb6
...
d58f32726d
Author | SHA1 | Date | |
---|---|---|---|
d58f32726d | |||
f09d15061f | |||
56d7f33dac | |||
dfa1b1c089 | |||
5d4efee5a2 |
5 changed files with 21 additions and 7 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -7,13 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.3.1] - 2023-05-23
|
||||
|
||||
### Fixed
|
||||
|
||||
- Action metadata looking in the wrong place for script (#12)
|
||||
|
||||
## [1.3.0] - 2023-05-19
|
||||
|
||||
### Changed
|
||||
|
||||
- Action now checks tool cache for installed version before querying Octokit (#5/#10)
|
||||
|
||||
## [1.2.0] - 2022-10-29
|
||||
|
||||
## Added
|
||||
### Added
|
||||
|
||||
- `CAPSULE_LOG` is now set to 'none' for less verbose setup logs (#1/#2)
|
||||
|
||||
## Fixed
|
||||
### Fixed
|
||||
|
||||
- Release list now paginates the API to find old versions of Nextflow (#3)
|
||||
|
||||
|
@ -37,7 +49,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- GitHub Actions workflow to test Nextflow installation and downstream usage
|
||||
- Documentation and license files
|
||||
|
||||
[unreleased]: https://github.com/nf-core/setup-nextflow/compare/v1.2.0...HEAD
|
||||
[unreleased]: https://github.com/nf-core/setup-nextflow/compare/v1.3.1...HEAD
|
||||
[1.3.1]: https://github.com/nf-core/setup-nextflow/compare/v1.3.0...v1.3.1
|
||||
[1.3.0]: https://github.com/nf-core/setup-nextflow/compare/v1.2.0...v1.3.0
|
||||
[1.2.0]: https://github.com/nf-core/setup-nextflow/compare/v1.1.1...v1.2.0
|
||||
[1.1.0]: https://github.com/nf-core/setup-nextflow/compare/v1.0.1...v1.1.0
|
||||
[1.0.1]: https://github.com/nf-core/setup-nextflow/compare/v1.0.0...v1.0.1
|
||||
|
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: nf-core/setup-nextflow@v1.2.0
|
||||
- uses: nf-core/setup-nextflow@v1
|
||||
- run: nextflow run ${GITHUB_WORKSPACE}
|
||||
```
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ inputs:
|
|||
default: ${{ github.token }}
|
||||
runs:
|
||||
using: "node16"
|
||||
main: "dist/index.js"
|
||||
main: "lib/src/main.js"
|
||||
branding:
|
||||
icon: "shuffle"
|
||||
color: "green"
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "install-nextflow-action",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "install-nextflow-action",
|
||||
"version": "1.2.0",
|
||||
"version": "1.3.0",
|
||||
"description": "An action to install Nextflow into a GitHub Actions workflow and make it available for subsequent steps.",
|
||||
"main": "lib/src/main.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue