fix DFM on PB v6 #12
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: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
push: | |
name: Push to Gitlab | |
env: | |
token: ${{ secrets.GITLAB_PAT }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Push To Gitlab | |
run: | | |
echo Starting to push repo to gitlab | |
git config user.name "TwilCynder" | |
git config user.email "[email protected]" | |
git remote set-url origin "https://oauth2:${token}@gitlab.com/TwilCynder/kuribrawl-tools.git" | |
git push origin master |