Fix version constraint for symfony 8 (#886) #518
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: gitsplit | |
| on: | |
| push: | |
| branches: | |
| - next | |
| release: | |
| types: [published] | |
| jobs: | |
| gitsplit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| run: git clone https://github.com/janephp/janephp /home/runner/work/janephp/janephp && cd /home/runner/work/janephp/janephp | |
| - name: gitsplit-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: cache/gitsplit | |
| key: gitsplit-${{ github.sha }} | |
| restore-keys: gitsplit- | |
| - name: prepare gitsplit-older | |
| run: cp /home/runner/work/janephp/janephp/.github/gitsplit/older/.gitsplit.yml /home/runner/work/janephp/janephp/.gitsplit.yml | |
| - name: gitsplit-older | |
| run: docker run --rm -t -e GH_TOKEN -v /cache/gitsplit:/cache/gitsplit -v /home/runner/work/janephp/janephp:/srv jderusse/gitsplit gitsplit | |
| env: | |
| GH_TOKEN: ${{ secrets.PRIVATE_TOKEN }} | |
| - name: prepare gitsplit-7-plus | |
| run: cp /home/runner/work/janephp/janephp/.github/gitsplit/7-plus/.gitsplit.yml /home/runner/work/janephp/janephp/.gitsplit.yml | |
| - name: gitsplit-7-plus | |
| run: docker run --rm -t -e GH_TOKEN -v /cache/gitsplit:/cache/gitsplit -v /home/runner/work/janephp/janephp:/srv jderusse/gitsplit gitsplit | |
| env: | |
| GH_TOKEN: ${{ secrets.PRIVATE_TOKEN }} |