Authentication method for accessing the qbee.io API within GitHub runners.
Include the following snipped in your yaml file to login to the qbee API to use the qbee github actions. This step is required before using any of the qbee actions
interfacing with the qbee API.
name: qbee.io authentication
uses: qbee-io/authenticate-action@main
id: qbee-auth
with:
login: ${{ secrets.USERNAME_KEY }}
password: ${{ secrets.PASSWORD_KEY }}login: the username you use to log into the qbee.io platformpassword: the corresponding password
This information is sensitive and we recommend to store it in GitHub secrets such that it is encrypted.