Files
symfony-flex-recipes-contrib/.github/workflows/flex-endpoint.yml
T

48 lines
1.5 KiB
YAML

name: Update Flex endpoint
on:
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
update:
name: Update Flex endpoint
runs-on: Ubuntu-20.04
steps:
-
name: Checkout
uses: actions/checkout@v2
id: checkout
with:
fetch-depth: 0
-
name: Install tools
run: |
git config --global user.email ""
git config --global user.name "github-action bot"
cd .github
wget -q -O recipes-checker.zip https://codeload.github.com/symfony-tools/recipes-checker/zip/refs/heads/main
unzip recipes-checker.zip
cd recipes-checker-main
composer install --ansi --no-dev
-
name: Update Flex endpoint
run: |
mkdir .github/flex-endpoint
git ls-tree HEAD */*/* | php .github/recipes-checker-main/run generate:flex-endpoint --contrib ${{ github.repository }} master flex/main .github/flex-endpoint
git switch flex/main
git rm -q *.json
mv .github/flex-endpoint/*.json .
git add *.json
git commit -m 'Update Flex endpoint' || true
git push origin -f flex/main