From a61d305b40849d103bbeeb9e4fda83cb158fcb75 Mon Sep 17 00:00:00 2001 From: etowahadams Date: Mon, 11 Dec 2023 13:54:48 -0500 Subject: [PATCH 1/2] docs: update contributing --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 37e3a4d4..8190e7a2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ After installing [pnpm](https://pnpm.io/installation), clone this repository and ```sh git clone https://github.com/gosling-lang/gosling.js.git # Clone the repository to your current directory cd gosling.js # Navigate to gosling repository -pnpm # Install dependencies +pnpm install # Install dependencies pnpm start # Start a local server running the Gosling online editor ``` From d958e4d9147585cd8e0f8de48d93b500f6a78266 Mon Sep 17 00:00:00 2001 From: etowahadams Date: Mon, 11 Dec 2023 14:05:03 -0500 Subject: [PATCH 2/2] fix: pnpm run deploy --- .github/workflows/deploy-editor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-editor.yml b/.github/workflows/deploy-editor.yml index 6b13fbc0..4543f723 100644 --- a/.github/workflows/deploy-editor.yml +++ b/.github/workflows/deploy-editor.yml @@ -25,7 +25,7 @@ jobs: git config --global user.name "action@github.com" git config --global user.email "GitHub Action" git remote set-url origin https://${ACCESS_TOKEN}@github.com/${REPO}.git - pnpm deploy + pnpm run deploy env: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} REPO: ${{ github.repository }}