KhronosGroup / glTF-Project-Explorer

Tool to provide a filterable registry of glTF community projects.
Apache License 2.0
87 stars 46 forks source link

Fix ref that triggers depolyoment #165

Closed javagl closed 1 year ago

javagl commented 1 year ago

Referring to https://github.com/KhronosGroup/glTF-Project-Explorer/issues/161#issuecomment-1470758958 , I think the condition for the deployment to be run was wrong:

if: ${{ github.ref == 'refs/head/main' }}    // OLD
if: ${{ github.ref == 'refs/heads/main' }}   // NEW

@weegeekps If that looks about right, feel free to merge.