chore(deps): update dependency @sveltejs/vite-plugin-svelte to v4 - autoclosed #144
Workflow file for this run
This file contains 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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- app: my.immich.app | |
name: my-immich | |
- app: buy.immich.app | |
name: buy-immich | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Set app | |
run: | | |
touch .env | |
echo IMMICH_APP="${{ matrix.app }}" >> .env | |
- name: Run npm install | |
run: npm ci | |
- name: Run build | |
run: npm run build | |
- name: Upload build output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-output-${{ matrix.name }} | |
path: build | |
retention-days: 1 |