disable gh actions for now

This commit is contained in:
Chuck Dries 2021-06-18 21:45:42 -07:00
parent 58172c9fb0
commit 7a0a3e0d9c

View File

@ -1,31 +1,31 @@
# This is a basic workflow to help you get started with Actions # This is a basic workflow to help you get started with Actions
name: deploy # name: deploy
# Controls when the action will run. Triggers the workflow on push or pull request # # Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch # # events but only for the master branch
on: # on:
push: # push:
branches: [ master ] # branches: [ master ]
pull_request: # pull_request:
branches: [ master ] # branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel # # A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: # jobs:
# This workflow contains a single job called "build" # # This workflow contains a single job called "build"
copy-to-server: # copy-to-server:
# The type of runner that the job will run on # # The type of runner that the job will run on
runs-on: ubuntu-latest # runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job # # Steps represent a sequence of tasks that will be executed as part of the job
steps: # steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 # - uses: actions/checkout@v2
- name: rsync directory # - name: rsync directory
uses: burnett01/rsync-deployments@4.1 # uses: burnett01/rsync-deployments@4.1
with: # with:
switches: -avzr --delete --exclude node_modules --exclude '.git*' # switches: -avzr --delete --exclude node_modules --exclude '.git*'
path: ./ # path: ./
remote_path: /docker-services/letsencrypt/www/personal-website # remote_path: /docker-services/letsencrypt/www/personal-website
remote_host: server.chuckdries.com # remote_host: server.chuckdries.com
remote_user: ${{ secrets.CI_USER }} # remote_user: ${{ secrets.CI_USER }}
remote_key: ${{ secrets.CI_SSH_KEY }} # remote_key: ${{ secrets.CI_SSH_KEY }}