We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71ae82f commit 2a031c4Copy full SHA for 2a031c4
.github/workflows/build.yml
@@ -45,12 +45,10 @@ jobs:
45
46
- name: Prepare Firefox extension xpi
47
run: |
48
- mkdir -p dist
49
- cd dist
50
- cp ../manifest.json .
51
- cp -r ../popup ../images ../options .
52
- zip -r openstack-profile-switcher-firefox-${VERSION}.xpi manifest.json popup images options
53
- cd ..
+ cd . # root of repository
+ zip -r -FS dist/openstack-profile-switcher-firefox-${VERSION}.xpi \
+ manifest.json popup images options \
+ --exclude '*.git*' --exclude '*.DS_Store*'
54
55
- name: Upload artifacts for debugging
56
uses: actions/upload-artifact@v4
0 commit comments