Skip to content

Remove duplicate team member in Meeting_2024-03-17.md #183

Remove duplicate team member in Meeting_2024-03-17.md

Remove duplicate team member in Meeting_2024-03-17.md #183

Workflow file for this run

name: Wiki
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout the /wiki repo
uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.wiki_key }}
known_hosts: ${{ secrets.wiki_hosts }}
- name: Update the wiki
run: |
git --version
git config --global user.email "supertux-bot"
git config --global user.name "SuperTux Bot"
git pull --ff-only git@github.com:SuperTux/supertux.wiki.git master
git push git@github.com:SuperTux/supertux.wiki.git HEAD:master