We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbeba52 commit ad18ed3Copy full SHA for ad18ed3
.github/workflows/publish.yml
@@ -30,6 +30,10 @@ jobs:
30
npm run postinstall
31
npm run build
32
33
+ - name: Zip static web assets
34
+ run: |
35
+ zip -r transformer-lab-web.zip release/cloud/
36
+
37
- name: copy p8 key to file
38
run: |
39
echo "${{ secrets.APPLE_API_KEY_P8_FILE }}" > api_key.p8
@@ -47,3 +51,11 @@ jobs:
47
51
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
52
49
53
npm exec electron-builder -- --publish always --win --mac --linux
54
55
+ - name: Upload static assets to GitHub Release
56
+ uses: softprops/action-gh-release@v1
57
+ with:
58
+ files: transformer-lab-web.zip
59
+ env:
60
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61
0 commit comments