From d01bf3ca521d0ebeac464b10234c9ef2b7e75689 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 15 Jun 2021 14:08:40 -0500 Subject: [PATCH] Delete .github directory --- .github/workflows/main.yml | 45 -------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 52adf04..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,45 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Build and Deploy Hugo - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - pull_request: - branches: [ master ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Need to checkout submodules for themes - - name: Checkout submodules - uses: textbook/git-checkout-submodule-action@2.1.1 - - - name: Hugo Build - uses: jakejarvis/hugo-build-action@v0.83.1 - - - name: FTP Deploy - uses: SamKirkland/FTP-Deploy-Action@4.0.0 - with: - server: ${{ secrets.FTP_HOST }} - username: ${{ secrets.FTP_USERNAME }} - password: ${{ secrets.FTP_PASSWORD }} - port: 21 - protocol: ftps - security: strict #this seems backwards - state-name: ../.ftp-deploy-sync-state.json - local-dir: ./public/