Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple bash action #179

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Prepend script with github.action_path
  • Loading branch information
ewels committed Dec 5, 2024
commit 31af4a7693f004b9b59f3e94e192ee90ad349ff1
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ inputs:
runs:
using: "composite"
steps:

- name: Install Java
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
Expand All @@ -28,7 +29,7 @@ runs:

- name: Get Nextflow version
id: get_nextflow_version
run: get_nextflow_version.sh >> $GITHUB_OUTPUT
run: ${{ github.action_path }}/get_nextflow_version.sh >> $GITHUB_OUTPUT
shell: bash
env:
NXF_ACTION_VER: ${{ inputs.version }}
Expand Down
Empty file modified get_nextflow_version.sh
100644 → 100755
Empty file.
Loading