Skip to content

chore(deps): update node.js to v20 (#380) #260

chore(deps): update node.js to v20 (#380)

chore(deps): update node.js to v20 (#380) #260

Workflow file for this run

---
name: 'deploy'
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# third-party action that cancels previous runs
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Cloning repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Cache Node.js modules
uses: actions/cache@v3
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_DOKKU_KEY }}
- name: Deploy
run: |
ssh-keyscan ${{ secrets.DOKKU_HOST }} >> ~/.ssh/known_hosts
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions"
git config --global push.default simple
git remote add deploy dokku@${{ secrets.DOKKU_HOST }}:banmanagement.com >/dev/null 2>&1
git stash --all
git checkout master
git push -f deploy master >/dev/null 2>&1