Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jun 15, 2022
1 parent 819da32 commit 9c71ce7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches: [master]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Deploy to Wiki
run: |
eval "$(ssh-agent -s)"
ssh-add - <<<"${{secrets.DEPLOY_KEY}}"
git push [email protected]:runelite/runelite.wiki master

0 comments on commit 9c71ce7

Please sign in to comment.