[READ-ONLY] Mirror of https://github.com/jmrplens/FDTDexamples. Modelos FDTD de aeroacústica simples y complejos para MATLAB 2019b o superior
acoustic fdtd matlab
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 11, 2023, 12:12 AM +0200) fbfa4886 b6a733e7

+21
+21
.github/workflows/mirror.yml
··· 1 + name: Mirror to gitlab 2 + 3 + on: 4 + push: 5 + branches: [ main, master ] 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 }}