Skip to content

Commit

Permalink
fix quotes (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
sc979 authored Sep 18, 2024
1 parent d70949d commit 93212fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/get-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ jobs:
shell: bash

- name: DEBUG is my internal secret safe
run: echo ${{ secrets.my_internal_secret }} | sed 's/./& /g'
run: echo "${{ secrets.my_internal_secret }}" | sed 's/./& /g'
shell: bash

- name: DEBUG is my shared secret safe
run: echo ${{ secrets.my_shared_secret }} | sed 's/./& /g'
run: echo "${{ secrets.my_shared_secret }}" | sed 's/./& /g'
shell: bash

- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down

0 comments on commit 93212fa

Please sign in to comment.