Skip to content

Commit 384224e

Browse files
committed
Print release log to test
fix upload action in the meantime
1 parent 810df12 commit 384224e

File tree

1 file changed

+29
-23
lines changed

1 file changed

+29
-23
lines changed

.github/workflows/release-extension.yaml

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,17 @@ jobs:
123123
VERSION=${{ needs.check_version.outputs.new_version }}
124124
zip -r ../signature-sync-firefox-${VERSION}.zip . -x '.*' -x '__MACOSX' -x '*.md'
125125
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
131-
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
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
131+
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
137137

138138
create_release:
139139
runs-on: ubuntu-latest
@@ -144,18 +144,24 @@ jobs:
144144
steps:
145145
- name: Checkout repository
146146
uses: actions/checkout@v4
147-
148-
# - name: Create GitHub Release
149-
# id: create_release
150-
# uses: softprops/action-gh-release@v1
151-
# with:
152-
# tag_name: v${{ needs.check_version.outputs.new_version }}
153-
# name: Release v${{ needs.check_version.outputs.new_version }}
154-
# body: |
155-
# Changes in this release:
156-
# ${{ needs.update_files.outputs.pr_list }}
157-
# env:
158-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
147+
148+
- name: Print release log
149+
run: |
150+
echo "Release log:"
151+
RELEASELOG=$(echo "${{ needs.update_files.outputs.release_log }}" | sed 's/\\n/\n/g')
152+
echo "$RELEASELOG"
153+
154+
# - name: Create GitHub Release
155+
# id: create_release
156+
# uses: softprops/action-gh-release@v1
157+
# with:
158+
# tag_name: v${{ needs.check_version.outputs.new_version }}
159+
# name: Release v${{ needs.check_version.outputs.new_version }}
160+
# body: |
161+
# Changes in this release:
162+
# ${{ needs.update_files.outputs.pr_list }}
163+
# env:
164+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
159165

160166
# - name: Upload Chrome zip to release
161167
# uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)