Compare commits

...

5 commits

Author SHA1 Message Date
d58f32726d
chore: Update CHANGELOG 2023-05-23 20:16:04 +00:00
f09d15061f
fix: Point to Typescript transpiled action script
The transpiled Typescript files are in a different directory than their Javascript counterparts.
Fix the action metadata to reflect this.
2023-05-23 20:13:53 +00:00
56d7f33dac chore: Upgrade package version number 2023-05-23 14:17:57 +00:00
dfa1b1c089 fix: Change README to point to latest version 2023-05-23 14:17:57 +00:00
5d4efee5a2 chore: Update CHANGELOG 2023-05-23 14:17:57 +00:00
5 changed files with 21 additions and 7 deletions

View file

@ -7,13 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [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 ## [1.2.0] - 2022-10-29
## Added ### Added
- `CAPSULE_LOG` is now set to 'none' for less verbose setup logs (#1/#2) - `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) - 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 - GitHub Actions workflow to test Nextflow installation and downstream usage
- Documentation and license files - 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.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.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 [1.0.1]: https://github.com/nf-core/setup-nextflow/compare/v1.0.0...v1.0.1

View file

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: nf-core/setup-nextflow@v1.2.0 - uses: nf-core/setup-nextflow@v1
- run: nextflow run ${GITHUB_WORKSPACE} - run: nextflow run ${GITHUB_WORKSPACE}
``` ```

View file

@ -16,7 +16,7 @@ inputs:
default: ${{ github.token }} default: ${{ github.token }}
runs: runs:
using: "node16" using: "node16"
main: "dist/index.js" main: "lib/src/main.js"
branding: branding:
icon: "shuffle" icon: "shuffle"
color: "green" color: "green"

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "install-nextflow-action", "name": "install-nextflow-action",
"version": "1.2.0", "version": "1.3.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {

View file

@ -1,6 +1,6 @@
{ {
"name": "install-nextflow-action", "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.", "description": "An action to install Nextflow into a GitHub Actions workflow and make it available for subsequent steps.",
"main": "lib/src/main.js", "main": "lib/src/main.js",
"scripts": { "scripts": {