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
check-runtime: runs-on: ubuntu-latest defaults: run: working-directory: ${{ inputs.project_dir }}/ outputs: files_exists: ${{ steps.check-dir.outputs.files_exists }} steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Check file existence id: check-dir uses: andstor/file-existence-action@v3 with: files: ./runtime/*, ./runtime, runtime/, runtime, runtime/**/*, runtime/environment.yml - run: ls -1
Run andstor/file-existence-action@v3
with: files: ./runtime/*, ./runtime, runtime/, runtime, runtime/**/*, runtime/environment.yml ignore_case: false follow_symbolic_links: true fail: false These files don't exist: ./runtime/*, runtime/**/*, ./runtime, runtime/, runtime, runtime/environment.yml
Run ls -1
environment.yml infrastructure requirements-local.txt runtime
The text was updated successfully, but these errors were encountered:
@juls858
I found the same error, as you:
It totally ignores the working directory.
as a workaround:
files: ${{ inputs.project_dir }}/runtime/*, ${{ inputs.project_dir }}/runtime, ${{ inputs.project_dir }}/runtime/, ${{ inputs.project_dir }}/runtime, ${{ inputs.project_dir }}/runtime/**/*, ${{ inputs.project_dir }}/runtime/environment.yml
Sorry, something went wrong.
No branches or pull requests
Run andstor/file-existence-action@v3
Run ls -1
The text was updated successfully, but these errors were encountered: