Skip to content

Commit b949bd0

Browse files
committed
Fixed webhooks issue. As the file is in .gitattributes it won't be added unless we use the --ignore-filters argument.
1 parent 0f5a651 commit b949bd0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/create-plugin-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
run: |
2424
echo "${GITHUB_SHA}" > build-sha.txt
2525
rm -f plugin-build/${{ inputs.slug }}-*.zip
26-
composer archive -vvv --format=zip --file="plugin-build/${{ inputs.slug }}" --dir="."
26+
composer archive -vvv --format=zip --ignore-filter --file="plugin-build/${{ inputs.slug }}" --dir="."
2727
shell: bash
2828

2929
- name: Upload plugin artifact

.github/workflows/pre-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
working-directory: ${{ steps.metadata.outputs.PLUGIN_DIR }}
128128
run: |
129129
rm -f plugin-build/${{ steps.plugin.outputs.plugin_slug }}.-*.zip
130-
composer archive -vvv --format=zip --file="plugin-build/${{ steps.plugin.outputs.plugin_slug }}" --dir="."
130+
composer archive -vvv --format=zip --ignore-filter --file="plugin-build/${{ steps.plugin.outputs.plugin_slug }}" --dir="."
131131
132132
# Verify archive was created
133133
if [ ! -f "plugin-build/${{ steps.plugin.outputs.plugin_slug }}.zip" ]; then

0 commit comments

Comments
 (0)