Skip to content

Commit

Permalink
馃悰Correctly Ignore .git* folders when bundling workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifabdlnaby committed Nov 11, 2023
1 parent 156d7fd commit eea40fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
sed -i "s/1.3.37/${version_without_v}/g" "info.plist"
mkdir -p build
find . -not -path '*/\.git|\.github/*' -exec zip --symlinks "build/alfred-granted-${VERSION}.alfredworkflow" {} +
find . -not -path '*/.git*' -exec zip --symlinks "build/alfred-granted-${VERSION}.alfredworkflow" {} +
echo "artifactPath=build/alfred-granted-${VERSION}.alfredworkflow" >> $GITHUB_ENV
- uses: diamondburned/action-upload-release@main
Expand Down

0 comments on commit eea40fd

Please sign in to comment.