From 5c1c5788f38cd39d36b22d74195cf22282799d56 Mon Sep 17 00:00:00 2001 From: Filippo Ferrari Date: Fri, 23 Feb 2024 20:29:01 +0100 Subject: [PATCH] fix: removed broken deploy.yml --- .github/workflows/deploy.yml | 47 ------------------------------------ 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index f11b1d1..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: build and deploy site - -# The trigger for the action -on: - push: - branches: - - master - -# Jobs are contains steps -jobs: - build_deploy: - name: build and deploy - # This job runs on linux - runs-on: ubuntu-latest - - steps: - # The first step is provided by GitHub and it checks out - # the master branch on the runner - - uses: actions/checkout@master - with: - submodules: true - - # This step uses an action created by a user which sets - # up Hugo on the runner and runs the hugo command to build - # the site - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.122.2' - - - name: Build - run: hugo - - # The last step deploys the site to my server by running - # the deploy script located in the ci directory - # within the repo - - name: deploy - run: source $GITHUB_WORKSPACE/ci/deploy.sh - env: - # This section sets up the environment used by the - # deploy script. These values are injected from - # the repo's secret store - ACTIONS_DEPLOY_KEY: ${{ secrets.BDEPLOY_KEY }} - SSH_USERNAME: ${{ secrets.SSH_USER }} - SERVER_ADDRESS: ${{ secrets.SSH_SERVER }} - SERVER_DESTINATION: ${{ secrets.DEST_DIR }} - SSH_PORT: ${{ secrets.SSH_PORT }}