We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8feaf13 commit f32d7feCopy full SHA for f32d7fe
Rakefile
@@ -4,19 +4,20 @@ task :generate do
4
system "rm -rf build"
5
system "./bin/middleman build --clean"
6
cd "build" do
7
+ system "touch .nojekyll"
8
system "git init"
9
system "git remote add origin git@github.com:mvcss/mvcss.github.com.git"
10
end
11
12
-desc "Push the build to the gh-pages branch on GitHub"
13
+desc "Push the build to GitHub"
14
task :push do
15
puts "## Deploying build to GitHub Pages"
16
17
system "git add ."
18
system "git add -u"
19
system "git commit -m \"Site updated at #{Time.now.utc}\""
- system "git push origin master:gh-pages --force"
20
+ system "git push origin master --force"
21
22
23
build/.nojekyll
0 commit comments