Skip to content

Commit

Permalink
Make sure no release contains thirdparty libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
nilmerg committed Oct 19, 2023
1 parent 7330e41 commit 666262b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/clean-vendor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Clean Vendor Check

on:
push:
branches:
- stable/*

jobs:
check-vendor:
name: Clean Vendor Check
runs-on: ubuntu-latest

steps:
- name: Checkout code base
uses: actions/checkout@v3

- name: Check If Vendor Is Clean
run: |
files=`find vendor -maxdepth 1 -type d -not -name "ipl" -not -name "fortawesome" -not -name "composer" -not -name "vendor"`
if [ -z "$files" ]; then
echo "No unknown vendor files found";
exit 0;
else
echo "Found unknown vendor files: $files";
exit 1;
fi
6 changes: 6 additions & 0 deletions bin/make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ rm -rf vendor
git checkout vendor
composer validate --no-check-all --strict || fail "Composer validate failed"

UNKNOWN_VENDOR_FILES=$(find vendor -maxdepth 1 -type d -not -name "ipl" -not -name "fortawesome" -not -name "composer" -not -name "vendor")
if [ -n "$UNKNOWN_VENDOR_FILES" ]; then
echo "Unknown vendor files found! DO NOT TAG!"
exit 1
fi

if [ -z "$NO_OPT" ]; then
git tag -a v$VERSION -m "Version v$VERSION"
echo "Finished, tagged v$VERSION"
Expand Down

0 comments on commit 666262b

Please sign in to comment.