DEV Community

[Comment from a deleted post]
Collapse
 
rmhogervorst profile image
Roel Hogervorst

To store secrets in github go to settings/secret in your repo and add them there, f.i. APIKEY. You can access them (in github actions) with ${{ secrets.APIKEY}}

Collapse
 
arikaturika profile image
Arika O

Thank you, I will check it out. I read something about GhitHub Actions but it was an older article and it was saying that the solution wasn't yet stable.

Collapse
 
clawfire profile image
Thibault Milan

The solution is definitely stable now. They iterated a few times and change completely the specification language from what it was at first. I'm using it to build and deploy a few applications (even recombine multiple application into 1 deployment for a website host on S3, but could have been GitHub pages, it's just my employer want control over the destination). So using secrets definitely work 👍🏼