build(deps-dev): bump svelte from 5.51.5 to 5.53.5 (#324) #326
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Deploy Storybook' | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| env: | |
| ASSETS_PATH: 'https://static.datenhub.net/apps/${{ github.event.repository.name }}/${{ github.head_ref || github.ref_name }}/' | |
| defaults: | |
| run: | |
| working-directory: ./components | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Create .env file for production | |
| run: | | |
| touch .env | |
| echo ASSETS_PATH=$ASSETS_PATH >> .env | |
| - run: npm ci | |
| - run: npm run sync | |
| - run: npm run build-storybook | |
| - uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }} | |
| - name: 'Upload files to GCP' | |
| uses: 'google-github-actions/upload-cloud-storage@v2' | |
| with: | |
| path: './components/storybook-static' | |
| parent: false | |
| destination: 'datenhub-net-static/apps/${{ github.event.repository.name }}/${{ github.head_ref || github.ref_name }}/' |