superfly / flyctl-actions

:octocat: GitHub Action that wraps the flyctl
Apache License 2.0
268 stars 34 forks source link

Is it possible for this to use a different fly.toml/Procfile? #41

Closed Kyu closed 1 year ago

Kyu commented 1 year ago

e.g fly.toml.dev and Procfile.dev for dev environment testing

murmrs commented 1 year ago

On the run command here:

- run: flyctl deploy --remote-only

You can pass specific configs using --config. Eg;

- run: flyctl deploy --remote-only --config ./fly.production.toml

See here.

Kyu commented 1 year ago

Thank you! I'll test it out.

edit: worked