94 lines
2.6 KiB
YAML
94 lines
2.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: npm run lint
|
|
|
|
- name: Test
|
|
run: npm test
|
|
|
|
deploy:
|
|
if: github.ref == 'refs/heads/main' && needs.test.result == 'success'
|
|
runs-on: ubuntu-latest
|
|
needs: test
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Get version
|
|
id: version
|
|
run: echo "version=$(cat IRIS_VERSION)" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Build frontend assets
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
|
|
- name: Build Python sdist
|
|
run: |
|
|
pip install --break-system-packages build
|
|
python -m build --sdist
|
|
|
|
- name: Upload release asset to Gitea
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA}}
|
|
run: |
|
|
VERSION=$(cat IRIS_VERSION)
|
|
ASSET="dist/Mopidy_Iris-${VERSION}.tar.gz"
|
|
API="https://code.lab.unbl.ink/api/v1/repos/secstate/Iris"
|
|
|
|
# Delete previous continuous release and tag
|
|
curl -s -X DELETE "${API}/releases/tags/continuous" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" || true
|
|
curl -s -X DELETE "${API}/tags/continuous" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" || true
|
|
|
|
# Create new release (creates tag pointing at main)
|
|
curl -s -X POST "${API}/releases" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"tag_name":"continuous","name":"Continuous build","prerelease":true,"target_commitish":"main"}'
|
|
|
|
# Upload sdist asset
|
|
curl -s -X POST "${API}/releases/tags/continuous/assets" \
|
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
|
-F "attachment=@${ASSET}"
|
|
|
|
- name: Install on server from release
|
|
uses: appleboy/ssh-action@v1.0.3
|
|
with:
|
|
host: mopidy-dev.service
|
|
username: root
|
|
key: ${{ secrets.JAIL_KEY }}
|
|
envs: VERSION
|
|
env:
|
|
VERSION: ${{ steps.version.outputs.version }}
|
|
script: |
|
|
pip uninstall -y --break-system-packages mopidy-iris
|
|
pip install --break-system-packages \
|
|
"https://code.lab.unbl.ink/secstate/Iris/releases/download/continuous/Mopidy_Iris-${VERSION}.tar.gz"
|
|
service mopidy restart
|