keep-running/.github/workflows/build.yaml

25 lines
588 B
YAML
Raw Normal View History

name: Keep Running
2023-11-19 02:28:59 +00:00
run-name: ${{ gitea.actor }} is running spotify.local CI pipeline 🚀
on: [push]
2023-11-19 02:28:59 +00:00
concurrency: 'true'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Building project
run: npm run build
- name: Creating archive
uses: vimtor/action-zip@v1.1
with:
files: out/
dest: build.zip
- name: Uploading archive
uses: actions/upload-artifact@v3
2023-11-19 02:28:59 +00:00
with:
path: build.zip