Merge pull request #89 from IGEL-Community:Brother-Scanner-Driver-brs… #1194
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
| name: MasterDeployCP | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Create CP packages | |
| run: bash utils/make-cp-packages.sh | |
| - name: git push | |
| run: | | |
| git config --global user.name "rneher-igel" | |
| git config --global user.email "[email protected]" | |
| git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
| git add --all | |
| git commit -m "Updated CP Packages" | |
| git push origin HEAD:master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
| REPO_OWNER: rneher-igel |