Skip to content

list files

list files #14

Workflow file for this run

name: 'deploy website'
on:
push:
branches:
- main
concurrency: site-deploy
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Cloning repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
cp -r examples/official-site /tmp/
rm -rf *
cp -r /tmp/official-site/* .
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add .
git commit -am "site update $(date)"
ls -lah *
# - name: Push to dokku
# uses: dokku/github-action@master
# with:
# git_remote_url: 'dokku@${{ secrets.DEPLOY_IP }}:sqlpage'
# ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
# ssh_host_key: ${{ secrets.SSH_HOST_KEY }}
# git_push_flags: '--force'
# branch: 'main'