chore: update OpenFE to v1.12.0 and support linux aarch64 #12
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: Generate SBOM | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| generate: | |
| name: Generate SBOM for ${{ matrix.environment }} | |
| strategy: | |
| matrix: | |
| environment: | |
| - openff | |
| - openfe | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Pixi | |
| uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| environments: ${{ matrix.environment }} | |
| - name: Generate SBOM | |
| uses: anchore/sbom-action@v0 | |
| with: | |
| path: .pixi/envs/${{ matrix.environment }} | |
| config: syft.yaml | |
| upload-release-assets: false | |
| artifact-name: ${{ matrix.environment }}.spdx.json |