summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJake Keast <JRKeast2003@outlook.com>2021-03-12 19:52:04 +0000
committerGitHub <noreply@github.com>2021-03-12 19:52:04 +0000
commit1c3e6eef9d4842e09cb0537c65dd087c2d0bd85c (patch)
tree2213bbc6c9d6eb5f0117987f978ffd73c50408e2 /.github/workflows
parent6f7a0afa9a7aa5d8477f14a486cca84c2c03483c (diff)
parent861931ccd3ab3796cf70186d58d2eab90fca8159 (diff)
Merge pull request #1 from LukeSmithxyz/master
update
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/upload.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/upload.yml b/.github/workflows/upload.yml
new file mode 100644
index 0000000..c3f9547
--- /dev/null
+++ b/.github/workflows/upload.yml
@@ -0,0 +1,33 @@
+name: CI
+
+# Controls when the action will run.
+on:
+ # Triggers the workflow on push to master (including merged PRs)
+ push:
+ 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"
+ update:
+ # 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:
+ - name: Updating website.
+ uses: appleboy/ssh-action@master
+ with:
+ host: based.cooking
+ username: based
+ key: ${{ secrets.based_ssh }}
+ passphrase: ${{ secrets.based_ssh_pass }}
+ port: ${{ secrets.based_port }}
+ script: |
+ cd repo
+ git pull --force origin master
+ mkdir -p dest
+ ./ssg5 src dest "Based Cooking (https://based.cooking)" "https://based.cooking"