Skip to content

Commit

Permalink
.github/workflows: Get real.
Browse files Browse the repository at this point in the history
Signed-off-by: Pouria Rezaei <[email protected]>
  • Loading branch information
RSKYS committed Jul 11, 2024
1 parent be865ba commit bdbe2ab
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,13 @@ jobs:
( export MainBranch=$(echo "${{ github.base_ref }}" | sed 's/^refs\/heads\///')
cd /tmp/sbo/repo
CHANGED=$(git diff --name-only remotes/origin/$MainBranch.. | grep '.SlackBuild')
CHANGED=$(git diff --name-only remotes/origin/$MainBranch.. | awk -F/ '{print $2}' | sort -u)
find */*/ -name "doinst.sh" -exec sed -e '1,$d' {} +
for FILE in $CHANGED; do
BASENAME=$(basename $FILE .SlackBuild)
for BASENAM in $CHANGED; do
PKGTYPE=txz \
sboinstall -j3 --reinstall $BASENAME
sboinstall -j3 --reinstall $BASENAM
done )
- name: Notify PR Thread
Expand Down

0 comments on commit bdbe2ab

Please sign in to comment.