Return slash "/"

This commit is contained in:
Daniel Lindmark 2024-05-14 15:45:56 -05:00
parent c24526d9e4
commit 9f9015d2e1

View File

@ -19,7 +19,7 @@ jobs:
- name: Print repository Action variable 🔎
run: |
echo "Repository variable VARIABLE_NAME = ${{ vars.VARIABLE_NAME }}"
echo "Repository variables are stored in ${{ github.server_url }}${{ github.repository }}/settings/actions/variables"
echo "Repository variables are stored in ${{ github.server_url }}/${{ github.repository }}/settings/actions/variables"
- name: Use Secret 🔎
# Store the secret in an environment variable YOUR_SECRET
@ -28,7 +28,7 @@ jobs:
# Demonstrate how to use secrets in the workflow
run: |
echo "Secrets are stored in ${{ github.server_url }}${{ github.repository }}"/settings/actions/secrets
echo "Secrets are stored in ${{ github.server_url }}/${{ github.repository }}"/settings/actions/secrets
echo "Secrets are only available to the repository admins and the workflow"
echo "Store API Tokens in secrets and use them in the workflow without exposing them"
echo "Secrets are not printed to the terminal for security reasons and will be replaced with ***"