compliance: update generate_report.sh to point to compliance director… #1707
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: force_push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
# This should only run in one place. | |
if: contains(github.repository, 'aws/s2n-tls') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Push cbmc | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.private_repos_s2n_20200214 }} | |
repository: awslabs/private-s2n-cbmc | |
branch: master | |
force: true | |
- name: Push fuzz | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.private_repos_s2n_20200214 }} | |
repository: awslabs/private-s2n-fuzz | |
branch: master | |
force: true |