You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stlite-lib: true # This step does not detect changes in the `streamlit` submodule that is needed to trigger the test-stlite-lib job (https://github.com/dorny/paths-filter/issues/143), so skip checking and make it always return true as a workaround.
if: ${{ ! failure() }} # This job should run even if the depending jobs are skipped, but not when those jobs failed: https://qiita.com/abetomo/items/d9ede7dbeeb24f723fc5#%E8%A8%AD%E5%AE%9A%E4%BE%8B4
if: ${{ !failure() && startsWith(github.ref, 'refs/tags/v') }} # `!failure()` is necessary to avoid skipping this job after successful build: https://github.com/actions/runner/issues/491
370
-
needs: [build-mountable]
370
+
needs: [build-browser]
371
371
372
372
permissions:
373
373
contents: write # Necessary for creating releases: https://github.com/softprops/action-gh-release#permissions
@@ -385,18 +385,18 @@ jobs:
385
385
386
386
- uses: actions/download-artifact@v4
387
387
with:
388
-
name: stlite-mountable-${{ github.ref_name }}.tgz
389
-
path: packages/mountable
388
+
name: stlite-browser-${{ github.ref_name }}.tgz
389
+
path: packages/browser
390
390
391
-
- run: yarn publish stlite-mountable-v*.tgz --access public
391
+
- run: yarn publish stlite-browser-v*.tgz --access public
392
392
env:
393
393
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
394
-
working-directory: packages/mountable
394
+
working-directory: packages/browser
395
395
396
396
- name: Create a new release
397
397
uses: softprops/action-gh-release@v2
398
398
with:
399
-
files: packages/mountable/stlite-mountable-v*.tgz
399
+
files: packages/browser/stlite-browser-v*.tgz
400
400
generate_release_notes: true
401
401
402
402
build-sharing:
@@ -728,7 +728,7 @@ jobs:
728
728
if: ${{ !failure() && startsWith(github.ref, 'refs/tags/v') }} # `!failure()` is necessary to avoid skipping this job after successful build: https://github.com/actions/runner/issues/491
729
729
needs:
730
730
- test-build-vscode-extension
731
-
- publish-mountable# The VSC extension uses the same version of published @stlite/mountable, so it must be released in order.
731
+
- publish-browser# The VSC extension uses the same version of published @stlite/browser, so it must be released in order.
732
732
733
733
permissions:
734
734
contents: write # Necessary for creating releases: https://github.com/softprops/action-gh-release#permissions
0 commit comments