feat: parse project toml files manually #16
Workflow file for this run
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 release schedule artifacts | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| # on demand | |
| workflow_dispatch: | |
| jobs: | |
| create-artifacts: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # We're going to make a tag that we can we release so we'll need the full history for that | |
| fetch-depth: 0 | |
| - uses: prefix-dev/setup-pixi@v0.8.14 | |
| with: | |
| pixi-version: "v0.49.0" | |
| environments: dev | |
| - run: | | |
| pixi run test |