Skip to content

Commit 749c1c7

Browse files
committed
Fix upload action and test uploads
1 parent 384224e commit 749c1c7

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/release-extension.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -121,19 +121,20 @@ jobs:
121121
git fetch --all
122122
git checkout origin/firefox
123123
VERSION=${{ needs.check_version.outputs.new_version }}
124+
cat manifest.json
124125
zip -r ../signature-sync-firefox-${VERSION}.zip . -x '.*' -x '__MACOSX' -x '*.md'
125126
126-
# - name: Upload Chrome zip
127-
# uses: actions/upload-artifact@v3
128-
# with:
129-
# name: signature-sync-chrome
130-
# path: ../signature-sync-chrome-${{ needs.check_version.outputs.new_version }}.zip
127+
- name: Upload Chrome zip
128+
uses: actions/upload-artifact@v4
129+
with:
130+
name: signature-sync-chrome-${{ needs.check_version.outputs.new_version }}.zip
131+
path: ../signature-sync-chrome-${{ needs.check_version.outputs.new_version }}.zip
131132

132-
# - name: Upload Firefox zip
133-
# uses: actions/upload-artifact@v3
134-
# with:
135-
# name: signature-sync-firefox
136-
# path: ../signature-sync-firefox-${{ needs.check_version.outputs.new_version }}.zip
133+
- name: Upload Firefox zip
134+
uses: actions/upload-artifact@v4
135+
with:
136+
name: signature-sync-firefox-${{ needs.check_version.outputs.new_version }}.zip
137+
path: ../signature-sync-firefox-${{ needs.check_version.outputs.new_version }}.zip
137138

138139
create_release:
139140
runs-on: ubuntu-latest
@@ -147,9 +148,9 @@ jobs:
147148

148149
- name: Print release log
149150
run: |
150-
echo "Release log:"
151151
RELEASELOG=$(echo "${{ needs.update_files.outputs.release_log }}" | sed 's/\\n/\n/g')
152-
echo "$RELEASELOG"
152+
echo "printing files"
153+
ls -la ..
153154
154155
# - name: Create GitHub Release
155156
# id: create_release

0 commit comments

Comments
 (0)