publishsheet - qlik-oss/gopherciser GitHub Wiki

PublishSheet action

Publish sheets in the current app.

  • mode:
    • allsheets: Publish all sheets in the app.
    • sheetids: Only publish the sheets specified by the sheetIds array.
  • sheetIds: (optional) Array of sheet IDs for the sheetids mode.
  • includePublished: Try to publish already published sheets.
  • thinktime: Duration to 'think' inbetween publishing sheets (for example, 1h, 30s or 1m10s). Defaults to 100ms.

Example

Publish two sheets

{
     "label": "PublishSheets",
     "action": "publishsheet",
     "settings": {
       "mode": "sheetids",
       "sheetIds": ["qmGcYS", "bKbmgT"]
     }
}

Publish all unpublished sheets with 5 seconds think time in between each one

{
     "label": "PublishSheets",
     "action": "publishsheet",
     "settings": {
       "mode": "allsheets",
       "thinktime": "5s"
     }
}
⚠️ **GitHub.com Fallback** ⚠️