Skip to content

separated oxford-topos meeting outcomes from other stuff, added stuff… #44

separated oxford-topos meeting outcomes from other stuff, added stuff…

separated oxford-topos meeting outcomes from other stuff, added stuff… #44

Workflow file for this run

on: [push, pull_request]
jobs:
push:
runs-on: ubuntu-latest
if: github.repository == 'LocalCharts/forest'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
mkdir -p ~/.ssh
echo "${{ secrets.GIT_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "${{ secrets.GIT_SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts
git config --global core.sshCommand 'ssh -i ~/.ssh/id_rsa -o IdentitiesOnly=yes -o UserKnownHostsFile=~/.ssh/known_hosts'
git remote add mirror ssh://[email protected]/LocalCharts/forest.git
git push --tags --force --prune mirror 'refs/remotes/origin/*:refs/heads/*'