diff options
author | 2022-12-04 13:14:59 +0300 | |
---|---|---|
committer | 2022-12-04 13:14:59 +0300 | |
commit | 09d6de47e57e110952e0d19d2e629bff34346dde (patch) | |
tree | d1be40492134590b00d2337628303d7d7afa1424 | |
parent | Update pydis_site/apps/content/resources/guides/python-guides/docker-hosting-... (diff) |
Update pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
Co-authored-by: Vivek Ashokkumar <[email protected]>
-rw-r--r-- | pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md index 09e180b3..395a6c46 100644 --- a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md +++ b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md @@ -226,7 +226,7 @@ as **actions secrets**. Let's add your discord bot's token as a secret 1. Head to your repository page -> Settings -> Secrets -> Actions 2. Press `New repository secret` -3. Give it a name like `TOKEN` and paste the token +3. Give it a name like `TOKEN` and paste the token. Now we will be able to access its value in workflow like `${{ secrets.TOKEN }}`. However, we also need to parse the variable into container now. Edit `docker-compose` so it looks like this: |