Generate via GH workflow #2
Workflow file for this run
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: Auto-generate CC Build TOML | |
on: | |
push: | |
branches: | |
- 'generate/aws-lc-sys*' | |
jobs: | |
generate-and-commit-linux-x86: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [ 1.72.1 ] # TODO: return to stable | |
os: [ ubuntu-latest, macos-12, macos-13-xlarge ] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Run Generate Scripts | |
run: | | |
./scripts/build/generate_build_toml.sh | |
- name: Commit and Push Changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "CC Build TOML: Linux x86" | |
branch: ${{ github.ref }} |