Skip to content

Commit

Permalink
Fix load_nixConfig to be handled correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
devholic committed Aug 1, 2023
1 parent eceb094 commit 1d74a69
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 1d74a69

Please sign in to comment.