sharetribe/sharetribe

View on GitHub
.github/workflows/mirror.yml

Summary

Maintainability
Test Coverage
name: Mirror

on:
  push:
    branches:
      - master

jobs:
  mirror:
    name: Mirror
    runs-on: ubuntu-20.04

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
          ref: "master"

      - name: Write deploy key to file
        run: |
          mkdir -p /home/runner/.ssh/
          echo "${{ secrets.MIRRORING_DEPLOY_KEY }}" >> /home/runner/.ssh/sync
          chmod 600 /home/runner/.ssh/sync

      - name: Synchronize to public repository
        env:
          GIT_SSH_COMMAND: ssh -i /home/runner/.ssh/sync
        run: |
          git remote add public git@github.com:sharetribe/sharetribe.git
          git push -f public master
          git push -f public --tags