mirror of
https://github.com/enso-org/enso.git
synced 2024-11-26 17:06:48 +03:00
parent
45172eec73
commit
7fa098f958
6
gui/.github/workflows/gui-ci.yml
vendored
6
gui/.github/workflows/gui-ci.yml
vendored
@ -368,6 +368,12 @@ jobs:
|
||||
FIREBASE_API_KEY: ${{secrets.FIREBASE_API_KEY}}
|
||||
WIN_CSC_LINK: ${{secrets.MICROSOFT_CODE_SIGNING_CERT}}
|
||||
WIN_CSC_KEY_PASSWORD: ${{secrets.MICROSOFT_CODE_SIGNING_CERT_PASSWORD}}
|
||||
- name: Upload Content Artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: content
|
||||
path: dist/content
|
||||
if: runner.os == 'Linux'
|
||||
- name: Upload Artifacts (macOS, dmg)
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
|
@ -222,6 +222,17 @@ let buildWASM = {
|
||||
run: "node ./run build --no-js --skip-version-validation",
|
||||
}
|
||||
|
||||
|
||||
let uploadContentLinux = {
|
||||
name: `Upload Content Artifacts`,
|
||||
uses: "actions/upload-artifact@v2",
|
||||
with: {
|
||||
name: 'content',
|
||||
path: `dist/content`
|
||||
},
|
||||
if: `runner.os == 'Linux'`
|
||||
}
|
||||
|
||||
let uploadWASM = {
|
||||
name: `Upload IDE WASM artifacts`,
|
||||
uses: "actions/upload-artifact@v2",
|
||||
@ -510,6 +521,7 @@ let workflow = {
|
||||
|
||||
downloadWASM,
|
||||
buildPackage,
|
||||
uploadContentLinux,
|
||||
uploadBinArtifactsForMacOS,
|
||||
uploadBinArtifactsForWindows,
|
||||
uploadBinArtifactsForLinux,
|
||||
|
Loading…
Reference in New Issue
Block a user