Merge pull request #38 from veracode/julz0815-patch-1 #28
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
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 |