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
This action is not using the working directory when it is present.
dagger 0.10.2
Create a workflow that uses a default directory:
name: Unit Tests on: workflow_call: jobs: test: defaults: run: # WORKING DIRECTORY HERE working-directory: dev/dagger runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout Project uses: actions/checkout@v3 - name: Setup Node uses: actions/setup-node@v3 - name: Install Dependencies run: npm install - name: Run Tests uses: dagger/dagger-for-github@v5 with: version: '0.10.2' verb: run args: node --loader ts-node/esm src/unit-tests.mts
In order to work around this issue, you must re-specify the working directory:
... - name: Run Tests uses: dagger/dagger-for-github@v5 with: # DUPLICATE CONFIG workDir: dev/dagger version: '0.10.2' verb: run args: node --loader ts-node/esm src/unit-tests.mts
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the issue?
This action is not using the working directory when it is present.
Dagger version
dagger 0.10.2
Steps to reproduce
Create a workflow that uses a default directory:
In order to work around this issue, you must re-specify the working directory:
Log output
No response
The text was updated successfully, but these errors were encountered: