helaili / jekyll-action

A GitHub Action to publish Jekyll based content as a GitHub Pages site
MIT License
250 stars 120 forks source link

target_path not a valid input #119

Closed anandmoghan closed 2 years ago

anandmoghan commented 2 years ago
Warning: Unexpected input(s) 'target_path', valid inputs are ['entryPoint', 'args', 'token', 'jekyll_env', 'jekyll_src', 'jekyll_build_options', 'gem_src', 'target_branch', 'build_only', 'pre_build_commands']

Example run: https://github.com/projectalbert/website/runs/5173705643

I am not able to set a target path to the action. Using the args in the following format

        uses: helaili/jekyll-action@v2
        with:
          jekyll_src: static
          target_path: dist
          gem_src: static
          build_only: true

Could you please help me debug this issue?

helaili commented 2 years ago

The v2 tag was not pointing at the latest release. This is now fix so that should work now.

anandmoghan commented 2 years ago

Thank you!