Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
donmahallem authored Dec 11, 2024
2 parents 92ef9d0 + f78ef92 commit b324ac1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"master"
],
"extends": [
"config:base"
"@donmahallem"
]
}
6 changes: 3 additions & 3 deletions .github/workflows/sync_gist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
name: Deploy Gist
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Sync Blender Notebook
uses: exuanbo/actions-deploy-gist@v1.0.4
uses: exuanbo/actions-deploy-gist@v1.1.4
id: sync_notebook
with:
token: ${{ secrets.deploy_token }}
gist_id: a05100077ec1327268f28f0b2bd8da60
file_path: ./runblender.ipynb
- name: Sync Readme
uses: exuanbo/actions-deploy-gist@v1.0.4
uses: exuanbo/actions-deploy-gist@v1.1.4
id: sync_readme
with:
token: ${{ secrets.deploy_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_json.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
name: Verify Clean Notebook
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Validate JSON
uses: docker://orrosenblatt/validate-json-action:latest
env:
Expand Down
10 changes: 5 additions & 5 deletions runblender.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"output_path = '/content/output' #@param {type: \"string\"}\n",
"gpu_enabled = True #@param {type:\"boolean\"}\n",
"cpu_enabled = False #@param {type:\"boolean\"}\n",
"use_blender = False #@param {type:\"boolean\"}\n",
"use_drive = False #@param {type:\"boolean\"}\n",
"#@markdown ---\n"
],
"execution_count": 0,
Expand All @@ -59,9 +59,9 @@
"colab": {}
},
"source": [
"if use_blender:\n",
" from google.colab import drive\n",
" drive.mount('/content/drive')\n"
"if use_drive:\n",
" from google.colab import drive\n",
" drive.mount('/content/drive')\n"
],
"execution_count": 0,
"outputs": []
Expand Down Expand Up @@ -237,7 +237,7 @@
},
"source": [
"#@title Render Setup\r\n",
"#@markdow\r\n",
"#@markdown\r\n",
"whatToRender = 'renderOneFrame' #@param [\"renderOneFrame\", \"renderAllFrame\", \"renderWithinRange\"] {allow-input: false}\r\n",
"#@markdown StartFrame = the frame you want to start with or the frame number for the renderOneFrame option\r\n",
"startFrame = 1#@param {type: \"integer\"}\r\n",
Expand Down

0 comments on commit b324ac1

Please sign in to comment.