Skip to content

Commit

Permalink
Add install action
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Feb 17, 2025
1 parent 120f9d4 commit 6d78ceb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions actions/install/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Install Depot'
description: 'Installs the Depot binary and its dependencies.'
runs:
using: "composite"
steps:
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20.15.0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.13.2
- name: Install Depot
run: curl https://raw.githubusercontent.com/cognitive-engineering-lab/depot/main/scripts/install.sh | sh
shell: bash

0 comments on commit 6d78ceb

Please sign in to comment.