FleekHQ / IC-Deploy-Action

Github action that wraps dfx commands to deploy canisters to Dfinity on push
43 stars 14 forks source link

Deployment with --no-wallet option? #2

Closed michielpost closed 3 years ago

michielpost commented 3 years ago

I'm using the Dank XTC token to pay for canister cycles. https://dank.ooo/ When I deploy to the IC, I use this command: dfx deploy --network ic --no-wallet --no-wallet is needed, because there is no canister wallet

Is it possible to supply the option --no-wallet using this GitHub Action>?

SamueleA commented 3 years ago

You should be able to do this with the new version of the github action

        uses: fleekhq/ic-deploy-action@v2

You can now use the dfx_params input which will append parameters to the dfx command.

https://github.com/FleekHQ/IC-Deploy-Action#dfx_params

michielpost commented 3 years ago

Thanks, just updated my GitHub Action and it deployed!