Skip to content

Commit

Permalink
needed here too
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider committed Apr 3, 2024
1 parent 8af9fe5 commit a0f4e69
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion download-build-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,20 @@ runs:
fi
shell: bash
- uses: denoland/setup-deno@v1
if: runner.os == 'macos'

- run: |
pkgx install deno
echo "${HOME}/.local/bin" >> $GITHUB_PATH
shell: bash
if: runner.os == 'linux'
- name: fetch deno deps
shell: bash
run: |
echo "::group::fetch deno deps"
pkgx deno cache ${GITHUB_ACTION_PATH}/../lib/actions/*.ts --config=${GITHUB_ACTION_PATH}/../deno.jsonc
deno cache ${GITHUB_ACTION_PATH}/../lib/actions/*.ts --config=${GITHUB_ACTION_PATH}/../deno.jsonc
echo "::endgroup::"
- name: prep
Expand Down

0 comments on commit a0f4e69

Please sign in to comment.