Remove extra slash /

This commit is contained in:
Daniel Lindmark 2024-05-14 15:41:19 -05:00
parent 763626eab8
commit 50e070dff4

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.workspace}}/${{ github.repository }}/settings/actions/variables"
echo "Repository variables are stored in ${{ github.server_url }}${{ github.workspace}}/${{ 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.workspace}}/${{ github.repository }}"/settings/actions/secrets
echo "Secrets are stored in ${{ github.server_url }}${{ github.workspace}}/${{ 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 ***"