Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,12 @@ jobs:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json', 'src/lib/prisma/schema.prisma') }}

- name: Setup stg-tunnel
- name: Setup Mock Build-Engine
run: |
echo "Setting up stg-tunnel..."
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "$APS_STG_SSH_CONFIG" > ~/.ssh/config
chmod 600 ~/.ssh/config
ssh aps-stg "echo 'SSH connection established successfully.'"
env:
SSH_PRIVATE_KEY: ${{ secrets.APS_STG_SSH_PRIVATE_KEY }}
APS_STG_SSH_CONFIG: ${{ secrets.APS_STG_SSH_CONFIG }}
# This step may need to be reordered.
# I have no idea how much actually needs to be done here or if this should be multiple steps.
# Just adding this here for now so there is a diff so I can open a draft PR for all to work on.
# - Aidan

- name: Build, Install Playwright dependencies, and seed database
run: |
Expand Down
Loading