Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielh-official committed Nov 11, 2023
2 parents c2a8174 + c6dbf1a commit 2a7723b
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,36 +36,36 @@ jobs:
run: vendor/bin/pest


build:
# build:

runs-on: ubuntu-latest
# runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '12'
check-latest: true
- name: Compile assets for production
run: |
npm install
npm run build
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Setup Node.js
# uses: actions/setup-node@v2-beta
# with:
# node-version: '12'
# check-latest: true
# - name: Compile assets for production
# run: |
# npm install
# npm run build

deploy:
runs-on: ubuntu-latest
# deploy:
# runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deployment
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
username: ${{ secrets.SSH_USERNAME }}
script: |
cd /var/www/html/
git checkout -f
git pull origin main
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Deployment
# uses: appleboy/ssh-action@master
# with:
# host: ${{ secrets.SSH_HOST }}
# key: ${{ secrets.SSH_PRIVATE_KEY }}
# username: ${{ secrets.SSH_USERNAME }}
# script: |
# cd /var/www/html/
# git checkout -f
# git pull origin main

0 comments on commit 2a7723b

Please sign in to comment.