feat(ondrej-sika.cz): Add link to Devopsa s.r.o. contact page to othe… #2237
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: Push to Gitlab | |
on: [push] | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: | | |
export BRANCH=$(echo $GITHUB_REF | sed 's/refs\/heads\///g') | |
git remote add gitlab ${{ secrets.REPOSITORY_URL }} | |
git branch $BRANCH | |
git push gitlab $BRANCH -f |