mirror of
				https://github.com/docker/compose.git
				synced 2025-11-04 05:34:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			435 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			435 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -ex
 | 
						|
 | 
						|
script/build-docs
 | 
						|
 | 
						|
pushd docs/_site
 | 
						|
 | 
						|
export GIT_DIR=.git-gh-pages
 | 
						|
export GIT_WORK_TREE=.
 | 
						|
 | 
						|
if [ ! -d "$GIT_DIR" ]; then
 | 
						|
  git init
 | 
						|
fi
 | 
						|
 | 
						|
if !(git remote | grep origin); then
 | 
						|
  git remote add origin git@github.com:docker/fig.git
 | 
						|
fi
 | 
						|
 | 
						|
git fetch origin
 | 
						|
git reset --soft origin/gh-pages
 | 
						|
 | 
						|
echo ".git-gh-pages" > .gitignore
 | 
						|
 | 
						|
git add -A .
 | 
						|
 | 
						|
git commit -m "update" || echo "didn't commit"
 | 
						|
git push origin master:gh-pages
 | 
						|
 | 
						|
popd
 |