This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From your Google Spreadsheet, select the menu item Tools > Script editor. | |
| # Copy and paste this code. | |
| # Replace uuid with the build_hooks uuid from your Netlify project. | |
| function onOpen() { | |
| SpreadsheetApp.getUi() | |
| .createMenu('Scripts') | |
| .addItem('Build', 'build') | |
| .addToUi(); | |
| } |