Skip to content

Commit

Permalink
Merge pull request #34 from devholic/master
Browse files Browse the repository at this point in the history
Fix `load_nixConfig` to be handled correctly
  • Loading branch information
rickynils authored Aug 14, 2023
2 parents eceb094 + 1d74a69 commit d964917
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ runs:
GITHUB_ACCESS_TOKEN: ${{ inputs.github_access_token }}

- name: Preload nixConfig from Flake
if: ${{ inputs.load_nixConfig }}
# Boolean input should be compared with string until https://github.com/actions/runner/issues/2238 resolved
if: ${{ inputs.load_nixConfig == 'true' }}
run: ${{ github.action_path }}/read-nix-config-from-flake.sh
shell: bash
env:
Expand Down

0 comments on commit d964917

Please sign in to comment.