diff options
author | Ryan Wilson <ryan@rdwilson.xyz> | 2021-03-13 02:04:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 02:04:34 -0400 |
commit | 0868c2ad4b2261d85edb0a5da0e80eabf1d7b717 (patch) | |
tree | a21c832b4a5b976da506b213a6dc3e798f8fa13b /.github/workflows/upload.yml | |
parent | 55c2c913fbf2bff94a08d51cf13073a4e135db71 (diff) | |
parent | 4e11acbfe41e45a787697af7e68edb6ccaeeb9d8 (diff) |
Merge pull request #1 from LukeSmithxyz/master
Merge
Diffstat (limited to '.github/workflows/upload.yml')
-rw-r--r-- | .github/workflows/upload.yml | 33 |
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" |