Skip to content

Fix version constraint for symfony 8 (#886) #518

Fix version constraint for symfony 8 (#886)

Fix version constraint for symfony 8 (#886) #518

Workflow file for this run

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 }}