Replies: 1 comment 11 replies
-
At first glance everything looks correct. The error message you're seeing suggests the Looking at this now - it's certainly possible there's been a regression which would explain why you're seeing a similar YAML in the Statiq site that works since that's on a slightly older version. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Versions:
Statiq.Razor: 1.0.0-beta.32
Statiq.Sass: 1.0.0-beta.32
Statiq.Web: 1.0.0-beta.18
I am in the process of setting up my site to be deployed through GitHub Actions. I have the following file named
deploy.yml
:On execution, this results in an error message:
[CRIT] Pipeline deploy does not exist
.Running without debug mode just says
[CRIT] Not found
.Things I have tried
Bootstrapper.AddPipeline<Statiq.Web.Pipelines.Deployment>()
in Program.csDeployToGithupPages
instead of letting it figure it out from my settings.ymldeployment
instead ofdeploy
in the Action.All three exhibit the same behavior as above.
Program.cs:
settings.yml:
As far as I can tell, everything is correct here. In fact, beyond turning on debug mode and changing the github repository information, everything here is exactly the same as the version running the statiq.dev website.
If any other files are needed, you can review my dev repository here: https://github.com/Foxtrek64/luzfaltex.github.io
When building locally, it appears to find the pipeline because I instead get an error saying it couldn't find the github token, which is to be expected. When running in Discord Actions however, it for some reason will consistently fail to find the deploy task.
Is this error message masking a different error? Or perhaps is there an issue with the Action environment?
Beta Was this translation helpful? Give feedback.
All reactions