Skip to content

Commit

Permalink
Initial release @widgetti/solara-vuetify3-app 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Nov 13, 2023
1 parent 9916fa3 commit f80553b
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/release_solara_vuetify_app-v3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release solara-vuetify3-app package

on:
push:
tags:
- "@widgetti/solara-vuetify3-app@*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "14.x"
registry-url: "https://registry.npmjs.org"
- name: Build the JS packages
run: |
cd packages
cd solara-widget-manager
npm install
npm run build
cd ..
cd solara-widget-manager8
npm install
npm run build
cd ..
cd solara-vuetify3-app
npm install
npm run build
- name: Publish the NPM package
run: |
cd packages/solara-vuetify3-app
echo $PRE_RELEASE
if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
npm publish --tag ${TAG} --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
PRE_RELEASE: ${{ github.event.release.prerelease }}

0 comments on commit f80553b

Please sign in to comment.