sigit.io/.gitea/workflows/release-staging.yaml

44 lines
963 B
YAML
Raw Normal View History

name: Release to Staging
2024-03-01 10:19:19 +00:00
on:
push:
branches:
- staging
2024-03-01 10:19:19 +00:00
jobs:
build_and_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
2024-03-01 10:30:00 +00:00
uses: actions/checkout@v3
2024-03-01 10:19:19 +00:00
- name: Setup Node
uses: actions/setup-node@v2
with:
2024-03-01 10:30:00 +00:00
node-version: 18
2024-03-01 10:19:19 +00:00
- name: Audit
run: npm audit
2024-03-01 10:19:19 +00:00
- name: Install Dependencies
run: npm ci
- name: Lint check
run: npm run lint
- name: Formatter check
run: npm run formatter:check
2024-03-01 11:27:33 +00:00
- name: Create .env File
2024-03-01 11:35:23 +00:00
run: echo "VITE_MOST_POPULAR_RELAYS=${{ vars.VITE_MOST_POPULAR_RELAYS }}" > .env
2024-03-01 11:27:33 +00:00
2024-03-01 10:25:32 +00:00
- name: Create Build
2024-03-01 10:19:19 +00:00
run: npm run build
- name: Release Build
2024-03-01 10:36:59 +00:00
run: |
npm -g install cloudron-surfer
surfer config --token ${{ secrets.STAGING_CLOUDRON_SURFER_TOKEN }} --server staging.sigit.io
2024-06-19 10:53:16 +00:00
surfer put dist/* / --all -d
surfer put dist/.well-known / --all