The action requires setting a api and token but it is not clear from the documentation where to get these values. The example is missing the api input and the link behind "API token" is broken.
The plugin template in Qt Creator creates a workflow with:
- name: Release on Extension Store
continue-on-error: true
uses: qt-creator/deploy-qtc-plugin@v0.3
with:
api: ${{ secrets.EXTENSION_STORE_API_URL }}
token: ${{ secrets.EXTENSION_STORE_API_TOKEN }}
publish: true
spec: release/${{ env.PLUGIN_NAME }}.json
download-url-linux-x64: [...]
but there are no examples how to set EXTENSION_STORE_API_URL and EXTENSION_STORE_API_TOKEN.
Some plugins already seem to use this workflow. E.g. the plugin cristianadam.dracula uses the template above and has a passing CI release pipeline, meaning that secrets.EXTENSION_STORE_API_URL and secrets.EXTENSION_STORE_API_TOKEN must have been set to something reasonable.
The action requires setting a
apiandtokenbut it is not clear from the documentation where to get these values. The example is missing theapiinput and the link behind "API token" is broken.The plugin template in Qt Creator creates a workflow with:
but there are no examples how to set
EXTENSION_STORE_API_URLandEXTENSION_STORE_API_TOKEN.Some plugins already seem to use this workflow. E.g. the plugin
cristianadam.draculauses the template above and has a passing CI release pipeline, meaning thatsecrets.EXTENSION_STORE_API_URLandsecrets.EXTENSION_STORE_API_TOKENmust have been set to something reasonable.