Merge pull request #64 from nazafur/patch-1 #53
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
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| push_to_web: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: master | |
| repository: veracode/veracode.github.io | |
| token: ${{ secrets.API_TOKEN_GITHUB }} | |
| path: tmp/veracode.github.io | |
| - name: add file to remote repo | |
| run: | | |
| cp README.md tmp/veracode.github.io/readme.md | |
| cd tmp/veracode.github.io | |
| git config --global user.name 'Julian Totzel-Hallhuber' | |
| git config --global user.email '[email protected]' | |
| git commit -am "Update readme file" | |
| git status | |
| git push |