Release 2025.09.08.1 #40
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: Vanagon Component Diff | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read # minimal required permissions to clone repo | |
| jobs: | |
| vanagon_component_diff_check: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| BUNDLE_WITH: development | |
| name: Check | |
| steps: | |
| - name: Checkout current PR | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # we need the full history because the rake tasks reads git tags | |
| - name: Install ruby version ${{ matrix.cfg.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.3 | |
| bundler-cache: true | |
| - name: Save artifacts data | |
| run: | | |
| mkdir -p ./output | |
| echo '${{ github.event.number }}' > ./output/nr | |
| bundle exec rake vanagon:component_diff -- '-mpall' > ./output/text | |
| cat ./output/text | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifacts | |
| path: output/ |