]> git.sur5r.net Git - cc65/blobdiff - Makefile.gh-pages
Merge pull request #100 from greg-king5/default-drivers
[cc65] / Makefile.gh-pages
index 573edfe9b160f9b73eb66ef080b0e7c46a295b66..4c6734ca64f623d8ecbb42d4784df05b8378b5e5 100644 (file)
@@ -5,16 +5,16 @@
 GH_PAGES = ../gh-pages
 
 all:
-       date +%D | zip -z cc65
+       echo $(TRAVIS_COMMIT) | zip -z cc65
 ifdef GH_TOKEN
-       git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/oliverschmidt/cc65.git $(GH_PAGES)
+       git clone --branch=gh-pages https://$(GH_TOKEN)@github.com/cc65/cc65.git $(GH_PAGES)
        cd $(GH_PAGES) && git config user.name "Oliver Schmidt"
        cd $(GH_PAGES) && git config user.email "ol.sc@web.de"
        cd $(GH_PAGES) && git config push.default simple
        cd $(GH_PAGES) && $(RM) -r doc download
        cd $(GH_PAGES) && mkdir doc download
        cp html/*.* $(GH_PAGES)/doc
-       cp cc65.zip $(GH_PAGES)/download/cc65-snapshot.zip
+       cp cc65.zip $(GH_PAGES)/download/cc65-snapshot-win32.zip
        cd $(GH_PAGES) && git add -A doc download
        cd $(GH_PAGES) && git commit -m "Updated from commit $(TRAVIS_COMMIT)."
        cd $(GH_PAGES) && git push