Skip to content

Commit

Permalink
ci: add ssh for debugging purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
kajabi-bot committed Sep 6, 2023
1 parent 4e587af commit 914c791
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release-deploy-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,18 @@ jobs:
if: steps.restore-sage-lib-node-modules.outputs.cache-hit != true
run: yarn install --frozen-lockfile

- name: Build
run: yarn build

- name: Cache build assets
uses: actions/cache@v3
uses: actions/cache/save@v3
id: sage-lib-build-assets
env:
cache-name: sage-lib-build-assets
with:
path: 'packages/**'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}

- name: Build
run: yarn build

publish:
needs: [lint, test, build]
Expand Down Expand Up @@ -205,7 +206,7 @@ jobs:
cache-name: sage-lib-build-assets
with:
path: 'packages/**'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}

- name: Check Build Assets cache hit
if: steps.restore-sage-lib-build-assets.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 914c791

Please sign in to comment.