We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi. I'm forced to use a Windows runner for a pipeline and the instructions in this repository do not work. Here's a MWE:
This pipeline fails, producing the error message Value cannot be null. (Parameter 'container').
Value cannot be null. (Parameter 'container')
jobs: build: runs-on: windows-latest steps: - uses: docker://pandoc/core with: args: "--help"
Changing to the ubuntu-latest runner fixes the problem. Any idea on why this is the case?
ubuntu-latest
The text was updated successfully, but these errors were encountered:
Turn out, installing via chocolatey does the job.
jobs: build: runs-on: windows-latest steps: - run: | choco install --yes pandoc pandoc --help
That'd be something to put into the README.
Sorry, something went wrong.
No branches or pull requests
Hi. I'm forced to use a Windows runner for a pipeline and the instructions in this repository do not work. Here's a MWE:
This pipeline fails, producing the error message
Value cannot be null. (Parameter 'container')
.Changing to the
ubuntu-latest
runner fixes the problem. Any idea on why this is the case?The text was updated successfully, but these errors were encountered: