This message was deleted.
# automation-api
s
This message was deleted.
f
I had to add
workDir: "."
to my
mLocalWorkspaceOptions
value to get some stuff working - maybe that will fix your problem:
Copy code
const opts: LocalWorkspaceOptions = {
        projectSettings:  projectSetting,
        stackSettings: {
            "dev": stackSettings
        },
        workDir: ".",
        secretsProvider: "<awskms://alias/pulumi?region=eu-central-1>"
    }
just a guess ....
f
hi, thx, it solves the problem on my local machine - but in the ci pipeline it happens again because the working directory is empty every time
f
Maybe refresh config if the stack exists? Just guessing and not quite sure how to do that 😉