Messing with the GitHub Action again.  Does this s...
# ask-community
m
Messing with the GitHub Action again.  Does this sound right for the sequence of Actions to register flows after a Commit? 1. Checkout repo into Action Runner 2. Install Prefect on the Action Runner 3. Make a config file that has a 
config.toml
 with my auth token (stored as a secret in GitHub) 4. run 
prefect register
 through the CLI Thanks!
z
I would just set your auth token via the environment, otherwise that sounds quite reasonable!
(a file is also a perfectly valid option, just sounds harder)
m
Sweet, thanks!