[READ-ONLY] Mirror of https://github.com/jmrplens/picoScopeMATLAB. Library for working with the PicoScope 5000 series (and possibly other models) in MATLAB
5000 function-generator instrument matlab oscilloscope picoscope picoscope-oscilloscope
0

Configure Feed

Select the types of activity you want to include in your feed.

Create mirror.yml

authored by

José M. Requena Plens and committed by
GitHub
(Apr 10, 2023, 10:06 PM +0200) 1c1907cf 1284d4ce

+21
+21
.github/workflows/mirror.yml
··· 1 + name: Mirror to gitlab 2 + 3 + on: 4 + push: 5 + branches: [ main ] 6 + workflow_dispatch: 7 + 8 + jobs: 9 + build: 10 + runs-on: ubuntu-latest 11 + 12 + steps: # <-- must use actions/checkout before mirroring! 13 + - uses: actions/checkout@v3 14 + with: 15 + fetch-depth: 0 16 + - uses: pixta-dev/repository-mirroring-action@v1 17 + with: 18 + target_repo_url: 19 + ssh://git@git.jmrp.io:${{ secrets.PORT }}/${{ github.repository }}.git 20 + ssh_private_key: # <-- use 'secrets' to pass credential information. 21 + ${{ secrets.GITLAB_SSH_PRIVATE_KEY }}