Skip to content

Commit

Permalink
GITHUB_ACTION_PATH instead of github.action_path
Browse files Browse the repository at this point in the history
For some reason the github.action_path is not set correctly.

Now using the environment variable.

Relates to: cachix#98
  • Loading branch information
JeroenKnoops committed Apr 11, 2023
1 parent be4cef7 commit 7338e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -18,7 +18,7 @@ branding:
runs:
using: 'composite'
steps:
- run : ${{ github.action_path }}/install-nix.sh
- run : ${{ GITHUB_ACTION_PATH }}/install-nix.sh
shell: bash
env:
INPUT_EXTRA_NIX_CONFIG: ${{ inputs.extra_nix_config }}
Expand Down

0 comments on commit 7338e39

Please sign in to comment.