2023-11-19 04:41:22 +00:00
|
|
|
name: Keep Running
|
2023-11-19 02:28:59 +00:00
|
|
|
run-name: ${{ gitea.actor }} is running spotify.local CI pipeline 🚀
|
2023-11-19 04:41:22 +00:00
|
|
|
on: [push]
|
2023-11-19 02:28:59 +00:00
|
|
|
concurrency: 'true'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-19 04:51:43 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- uses: vimtor/action-zip@v1.1
|
|
|
|
with:
|
|
|
|
files: out/
|
|
|
|
desk: build.zip
|
2023-11-19 02:28:59 +00:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-11-19 04:51:43 +00:00
|
|
|
path: build.zip
|