Skip to content
Snippets Groups Projects
Select Git revision
  • a7d860ffcd5cffa58feaa0b6804b7a09f434ff8f
  • main default protected
  • feature/new_systems_methodology
  • fix/missing-api-documentation
  • feature/python_example_folder_update
  • beta_release protected
  • fix/revert-gitlab-config
  • fix/citationEcologicalAssessment
  • documentation/styleupdate
  • feature/lightMode
  • documentation/create_mission_xml
  • 28-empennage-design-update-documentation-according-to-workshop
  • documentation/fix-dot-equations
  • documentation/propulsion-design-module
  • documentation/gitlab-workflow
  • documentation/cost_estimation_update
  • documentation/mkdocs_python_update
  • documentation/tank_design_update
  • documentation/landing_gear_design_update
  • documentation/fuselage_design_update
  • documentation/global-header-file-setup
  • 0.5.0
22 results

software_architecture.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    publishDocs.ps1 508 B
    param(
        $token
    )
    
    $remoteUrl = git config --get remote.origin.url
    $remoteUrl = $remoteUrl.replace("git@", "")
    $remoteUrl = $remoteUrl -replace "https(.*?)@",""
    $remoteUrl = $remoteUrl.replace(":", "/")
    $remoteUrl = $remoteUrl.replace(".git", ".wiki.git")
    
    $temporaryFolderName = "publishDocsTempFolder"
    
    git clone "https://gitlab-ci-token:$($token)@$($remoteUrl)" $temporaryFolderName
    cd $temporaryFolderName
    Remove-Item *
    cp -r ../docs/* ./
    git add . 
    git commit -m "Docs: Documentation Update" 
    git push