Merge pull request #2 from mooxl/dev

test
This commit is contained in:
Max Schmidt 2023-05-17 12:39:24 +02:00 committed by GitHub
commit 57ac98b83b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,16 @@ jobs:
name: Run remote SSH command
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install dotenv
- name: Load environment variables from .env file
run: |
source .env.prod
- name: Print environment variable
run: echo $PAYLOAD_URL
- name: Trigger build via ssh
uses: appleboy/ssh-action@master
with: