try fetch again
diff --git a/.github/workflows/tinytapeout.yaml b/.github/workflows/tinytapeout.yaml
index a5ff4c8..b18757f 100644
--- a/.github/workflows/tinytapeout.yaml
+++ b/.github/workflows/tinytapeout.yaml
@@ -57,8 +57,8 @@
 #        iverilog -V
 
     # fetch the repos - will fail till work out the tokens stuff
-#    - name: fetch all
-#      run: python ./configure.py --update-projects
+    - name: fetch all
+      run: python ./configure.py --update-projects
 
     # install projects
     - name: configure
diff --git a/configure.py b/configure.py
index ffb694b..f4950d8 100755
--- a/configure.py
+++ b/configure.py
@@ -78,7 +78,6 @@
 
         # authenticate for rate limiting
         auth_string = os.environ['USERNAME'] + ':' + os.environ['TOKEN']
-        logging.info(auth_string)
         encoded = base64.b64encode(auth_string.encode('ascii'))
         headers = {
             "authorization" : 'Basic ' + encoded.decode('ascii'),
@@ -92,7 +91,9 @@
             logging.error("no API requests remaining")
             exit(1)
 
+        print(r)
         data = r.json()
+        print(data)
         try:
             latest = data['artifacts'][0]
         except IndexError: