docs: Update path

This commit is contained in:
Edmund Miller 2022-11-11 10:32:38 -06:00 committed by Thomas A. Christensen II
parent 5fb6055651
commit 70311f90c6
2 changed files with 9 additions and 9 deletions

View file

@ -37,8 +37,8 @@ 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/MillironX/setup-nextflow/compare/v1.2.0...HEAD [unreleased]: https://github.com/nf-core/setup-nextflow/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/MillironX/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/MillironX/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/MillironX/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
[1.0.0]: https://github.com/MillironX/setup-nextflow/releases/tag/v1.0.0 [1.0.0]: https://github.com/nf-core/setup-nextflow/releases/tag/v1.0.0

View file

@ -1,8 +1,8 @@
# Setup Nextflow for GitHub Actions # Setup Nextflow for GitHub Actions
[![Testing](https://github.com/MillironX/setup-nextflow/actions/workflows/example.yml/badge.svg)](https://github.com/MillironX/setup-nextflow/actions/workflows/example.yml) [![Testing](https://github.com/nf-core/setup-nextflow/actions/workflows/example.yml/badge.svg)](https://github.com/nf-core/setup-nextflow/actions/workflows/example.yml)
[![MIT License](https://img.shields.io/github/license/MillironX/setup-nextflow?logo=opensourceinitiative)](https://github.com/MillironX/setup-nextflow/blob/master/LICENSE) [![MIT License](https://img.shields.io/github/license/nf-core/setup-nextflow?logo=opensourceinitiative)](https://github.com/nf-core/setup-nextflow/blob/master/LICENSE)
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/MillironX/setup-nextflow?logo=github)](https://github.com/MillironX/setup-nextflow/releases/latest) [![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/nf-core/setup-nextflow?logo=github)](https://github.com/nf-core/setup-nextflow/releases/latest)
[![Get from GitHub Actions](https://img.shields.io/static/v1?label=actions&message=marketplace&color=green&logo=githubactions)](https://github.com/marketplace/actions/setup-nextflow) [![Get from GitHub Actions](https://img.shields.io/static/v1?label=actions&message=marketplace&color=green&logo=githubactions)](https://github.com/marketplace/actions/setup-nextflow)
An action to install [Nextflow](https://nextflow.io) into a GitHub Actions workflow and make it available for subsequent steps. An action to install [Nextflow](https://nextflow.io) into a GitHub Actions workflow and make it available for subsequent steps.
@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: MillironX/setup-nextflow@v1 - uses: nf-core/setup-nextflow@v1.2.0
- run: nextflow run ${GITHUB_WORKSPACE} - run: nextflow run ${GITHUB_WORKSPACE}
``` ```