why do i am getting Failed to create deployment error while deploying my website on github pages - html

I created a html website. I uploaded all the source code in my GitHub repository. Now I want to host my website using GitHub Pages but I am getting Error that says: 'Failed to create deployment (status: 500) with build version 35c4d9bf78f338ba8319cfe032e967dd258d9ede. Server error, is githubstatus.com reporting a Pages outage? Please re-run the deployment at a later time'
This is the error which I got

It can be caused by several reasons, just re-run the deploy job after some minutes. For me, it worked.

Related

Error during "build" phase of GitHub Pages deployment

This is my first dive into programming and I am trying to deploy my GitHub Pages site. I am feeling very lost trying to troubleshoot this on my own. Does anyone have any advice? I am receiving Conversion error: Jekyll::Converters::Scss encountered an error while converting 'assets/css/style.scss':
43
No such file or directory # dir_chdir - /github/workspace/docs

Why does my GitPages website only show a 404 even though I am sure my code is not buggy?

My Git Website returns a 404 every time I run it. The only thing I can find is this: Conversion error: Jekyll::Converters::Scss encountered an error while converting'assets/css/style.scss': No such file or directory # dir_chdir - /github/workspace/docs
Someone please help.
My project: https://github.com/orivera2280/GetConnectedSix.git
Hello and welcome to StackOverflow. GitHub Pages is for static-file hosting (HTML, CSS, JS for the client-side, images, etc) and would not RUN the Python code for your Flask app, hence the 404 page. You would need a cloud-hosting platform like Heroku or AWS. Both offer a free tier.

Purge locked file by Octopus

We are trying to configure a deployment of ASP.NET application using Octopus deploy.
All is working fine, but sometimes the step fails while trying to overwrite files saying the the file is already locked by some other process.
We already stop IIS before the deployment starts, so not sure what we can try here.
Sometimes the error is in the application customlog folder(txt files), sometimes its in the bin folder for some dll etc.
Exact error is:
*Unable to copy the package to the specified directory 'D:\Apps\XYZ_Stage'. One or more files in the directory may be locked by another process. You could use a PreDeploy.ps1 script to stop any processes that may be locking the file. Error details follow.
Access to the path 'D:\Apps\XYZ_Stage\bin\XYZ.Business.dll' is denied.
System.UnauthorizedAccessException: Access to the path 'D:\Apps\XYZ_Stage\bin\ACA.Business.dll' is denied.*
Any suggestions?
If you're using Octopus 2.0 or higher, you can leverage the "IIS web site and application pool" deployment option which causes Octopus Deploy to handle all the complexities of deploying to IIS without you performing manual steps.
Here's some information: http://docs.octopusdeploy.com/display/OD/IIS+Websites+and+Application+Pools

XBAP application manifest download issue in multiple publish scenario

we have an XBAP application. The XBAP is hosted in IIS in a website.
The same application is deployed in multiple environments, but the assembly versions numbers are kept different in different environments.
Only certain users complaining about not being able to access only certain environments. What I have observed is that once they access an environment that is browsable, the manifests get downloaded in AppData/Local/Apps/2.0/... folder. After that when they try to access another environment they get an error. See the error details below -
ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * An exception occurred while downloading the application. Following failure messages were detected: + Reference in the manifest does not match the identity of the downloaded assembly .dll.
Strange thing is that even after deleting all the content from AppData/Local/Apps/2.0 folder and then trying to access the URL (that is not working) gives the same error message.
How do we deploy the XBAP - for the XBAP project we have a post build event that copies all the output to a specific folder in a web project and we host the XBAP in an html already present in the same folder.
The error is because, project->properties->publish-> automatically increment revision with each publish, is checked. so each time you run the app, the version increments in the manifest.
For deploying XBAP, please have a look into the following link,
http://msdn.microsoft.com/en-us/library/aa970060(v=vs.110).aspx

Error trying to read the VSIX manifest file... The system cannot find the file specified

I am trying to build a Visual Studio Package project via Hudson CI. This is a Visual Studio 2010 project. The project builds fine in my dev box, but for some reason, I keep getting the following error only when building in Hudson:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets(378,5): error : Error trying to read the VSIX manifest file "obj\Release\extension.vsixmanifest". The system cannot find the file specified. (Exception from HRESULT: 0x80070002) [C:\hudson\workspace\MyProject_Daily_Compilation\Source\MyProject.VisualStudio\MyProject.VisualStudio.csproj]
I have verified that the file exists on disk in the following location:
C:\Hudson\workspace\MyProject_Daily_Compilation\Source\MyProject.VisualStudio\obj\Release\extension.vsixmanifest
What could be causing this issue?
You are likely to experience such error if the user you are running your build as does not have administrative privileges.
So there are 2 solutions:
1) Run your build (build server) with administrative privileges.
or if you can't really change the user your build server is running on
2) and you actually don't need to deploy the VS extension on the build server itself, set the DeployExtension property in your *.csproj file to false.
Microsoft.VsSDK.targets sets that property by default to true
<DeployExtension Condition="'$(DeployExtension)' == ''">true</DeployExtension>
but if you don't need to deploy that extension locally (but rather would prefer to get the *.vsix bundle built you can safely put
<PropertyGroup>
<DeployExtension>false</DeployExtension>
</PropertyGroup>
The original error is basically happening because the attempt to get the deployment path fails at some point in the build and disrupts successful vsix package generation. By setting the property to false the build doesn't attempt to deploy the extension locally (but a valid *.vsix is generated)
I am guessing you running hudson as a service. If so the "0x80070002 - The system cannot find specified file" could well be due to the user being used to run hudson does not have access.
The quick solution to this is change the "Log on" user for the Hudson service to be your normal account.