Update version from 2.0.2 to 2.0.3 in README #5
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
| # .github/workflows/sync-to-gitlab.yml | |
| name: Mirror to GitLab | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Mirror to GitLab | |
| env: | |
| GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
| run: | | |
| git remote add gitlab https://oauth2:${GITLAB_TOKEN}@gitlab.com/kallistios/dcload-ip.git | |
| git push gitlab --all | |
| git push gitlab --tags |