Skip to content

Commit b263769

Browse files
committed
Attempt to fix get-idris-sha action
1 parent bc13704 commit b263769

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/get-idris-sha/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ runs:
1919
- name: Get SHA
2020
id: get-sha
2121
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
2323
shell: bash
2424
- name: Get LSP SHA
2525
id: get-lsp-sha
2626
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
2828
shell: bash
2929
- name: Outputs
3030
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 }}"
3333
shell: bash

0 commit comments

Comments
 (0)