This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Deploy #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Deploy manually | |
| name: Deploy | |
| # Controls when the action will run. Workflow runs when manually triggered using the UI | |
| # or API. | |
| on: | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "greet" | |
| deploy: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| - name: Checkout tools repo | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: psychoinformatics-de/sfb1451_data_entry | |
| path: sfb1451_data_entry | |
| fetch-depth: 0 | |
| - name: Configure git | |
| run: | | |
| cd sfb1451_data_entry | |
| git config --global user.email "christian.moench@web.de" | |
| git config --global user.name "${GITHUB_ACTOR}" | |
| - name: Execute deploy script | |
| run: | | |
| cd sfb1451_data_entry | |
| ./deploy.sh | |