File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.github/actions/get-idris-sha Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ runs:
19
19
- name : Get SHA
20
20
id : get-sha
21
21
run : |
22
- echo "name= sha:: $(curl -s 'https://api.github.com/repos/idris-lang/Idris2/commits' | jq -r '.[0].sha')" >> $GITHUB_OUTPUT
22
+ echo "sha= $(curl -s 'https://api.github.com/repos/idris-lang/Idris2/commits' | jq -r '.[0].sha')" >> $GITHUB_OUTPUT
23
23
shell : bash
24
24
- name : Get LSP SHA
25
25
id : get-lsp-sha
26
26
run : |
27
- echo "name= lsp-sha:: $(curl -s 'https://api.github.com/repos/idris-community/idris2-lsp/commits' | jq -r '.[0].sha')" >> $GITHUB_OUTPUT
27
+ echo "lsp-sha= $(curl -s 'https://api.github.com/repos/idris-community/idris2-lsp/commits' | jq -r '.[0].sha')" >> $GITHUB_OUTPUT
28
28
shell : bash
29
29
- name : Outputs
30
30
run : |
31
- echo "LSP Sha : ${{ steps.get-lsp-sha.outputs.lsp-sha }}"
32
- echo "Idris Commit Sha : ${{ steps.get-sha.outputs.sha }}"
31
+ echo "LSP SHA : ${{ steps.get-lsp-sha.outputs.lsp-sha }}"
32
+ echo "Idris Commit SHA : ${{ steps.get-sha.outputs.sha }}"
33
33
shell : bash
You can’t perform that action at this time.
0 commit comments