Commit b95a35d 1 parent 58966e9 commit b95a35d Copy full SHA for b95a35d
File tree 2 files changed +20
-8
lines changed
2 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ jobs:
34
34
- name : Use Node.js ${{ matrix.node-version }}
35
35
uses : actions/setup-node@v3
36
36
with :
37
- cache : " yarn"
37
+ cache : ' yarn'
38
38
node-version : ${{ matrix.node-version }}
39
39
- uses : actions/setup-java@v3
40
40
with :
41
- distribution : " adopt"
42
- java-version : " 11 "
41
+ distribution : ' adopt'
42
+ java-version : ' 11 '
43
43
- name : Install clojure tools
44
44
uses : DeLaGuardo/setup-clojure@7.0
45
45
with :
@@ -104,11 +104,17 @@ jobs:
104
104
- name : build and release
105
105
env :
106
106
SNOWPACK_PUBLIC_SENTRY_DSN : ${{ secrets.SNOWPACK_PUBLIC_SENTRY_DSN }}
107
- SNOWPACK_PUBLIC_FLUENT_ENV : " debug-release"
107
+ SNOWPACK_PUBLIC_FLUENT_ENV : ' debug-release'
108
108
SNOWPACK_PUBLIC_FLUENT_VERSION : ${{ fromJSON(steps.get-release-version-and-tag.outputs.result).version }}
109
- run : yarn prod:release
109
+ run : yarn build
110
+
111
+ - name : zip files
112
+ run : |
113
+ zip -r ./dist/chrome.zip ./dist/chrome
114
+ zip -r ./dist/firefox.zip ./dist/firefox
115
+ zip -r ./dist/edge.zip ./dist/edge
110
116
111
117
- uses : shogo82148/actions-upload-release-asset@v1
112
118
with :
113
119
upload_url : ${{ steps.create_release.outputs.upload_url }}
114
- asset_path : releases/*
120
+ asset_path : dist/*.zip
Original file line number Diff line number Diff line change @@ -94,12 +94,18 @@ jobs:
94
94
SNOWPACK_PUBLIC_SENTRY_DSN : ${{ secrets.SNOWPACK_PUBLIC_SENTRY_DSN }}
95
95
SNOWPACK_PUBLIC_FLUENT_ENV : " production"
96
96
SNOWPACK_PUBLIC_FLUENT_VERSION : ${{ steps.dotenv.outputs.SNOWPACK_PUBLIC_FLUENT_VERSION }}
97
- run : yarn prod:release
97
+ run : yarn build
98
+
99
+ - name : zip files
100
+ run : |
101
+ zip -r ./dist/chrome.zip ./dist/chrome
102
+ zip -r ./dist/firefox.zip ./dist/firefox
103
+ zip -r ./dist/edge.zip ./dist/edge
98
104
99
105
- uses : shogo82148/actions-upload-release-asset@v1
100
106
with :
101
107
upload_url : ${{ steps.create_release.outputs.upload_url }}
102
- asset_path : releases/*
108
+ asset_path : dist/*.zip
103
109
104
110
- name : Create Pull Request
105
111
uses : peter-evans/create-pull-request@v4.0.4
You can’t perform that action at this time.
0 commit comments