Update compyte to d4549d4c711513e2cc098d3f5d4e918eac53ee7a #32
This file contains 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
name: Gitlab mirror | |
on: | |
push: | |
branches: | |
- main | |
- kernel_callables_v3-edit2 | |
jobs: | |
autopush: | |
name: Automatic push to gitlab.tiker.net | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
mkdir ~/.ssh && echo -e "Host gitlab.tiker.net\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config | |
eval $(ssh-agent) && echo "$GITLAB_AUTOPUSH_KEY" | ssh-add - | |
git fetch --unshallow | |
TGT_BRANCH="${GITHUB_REF#refs/heads/}" | |
echo "pushing to $TGT_BRANCH..." | |
git push "[email protected]:inducer/$(basename $GITHUB_REPOSITORY).git" "$TGT_BRANCH" | |
env: | |
GITLAB_AUTOPUSH_KEY: ${{ secrets.GITLAB_AUTOPUSH_KEY }} | |
# vim: sw=4 |