mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
131 lines
3.6 KiB
YAML
131 lines
3.6 KiB
YAML
name: Production
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
# test:
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
# - name: Checkout repo
|
|
# uses: actions/checkout@v1
|
|
|
|
# - name: Use Node.js ${{ matrix.node-version }}
|
|
# uses: actions/setup-node@v1
|
|
# with:
|
|
# node-version: ${{ matrix.node-version }}
|
|
|
|
# - name: Add SSH deploy key
|
|
# run: |
|
|
# mkdir ~/.ssh/
|
|
# # Add keys
|
|
# echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY }}" > ~/.ssh/id_rsa
|
|
# echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY_PUB }}" > ~/.ssh/id_rsa.pub
|
|
# # Verifiy keys
|
|
# ssh-keygen -l -f ~/.ssh/id_rsa.pub
|
|
# # Add github.com to known hosts
|
|
# ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
# # Set correct permissions
|
|
# chmod 600 ~/.ssh/id_rsa
|
|
|
|
# - name: Installing node deps
|
|
# run: npm ci
|
|
|
|
# - name: Test
|
|
# run: npm test
|
|
# # uses: omgimalexis/ava-action@master
|
|
# # env:
|
|
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# lint:
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
# - name: Checkout repo
|
|
# uses: actions/checkout@v1
|
|
|
|
# - name: Use Node.js ${{ matrix.node-version }}
|
|
# uses: actions/setup-node@v1
|
|
# with:
|
|
# node-version: ${{ matrix.node-version }}
|
|
|
|
# - name: Add SSH deploy key
|
|
# run: |
|
|
# mkdir ~/.ssh/
|
|
# # Add keys
|
|
# echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY }}" > ~/.ssh/id_rsa
|
|
# echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY_PUB }}" > ~/.ssh/id_rsa.pub
|
|
# # Verifiy keys
|
|
# ssh-keygen -l -f ~/.ssh/id_rsa.pub
|
|
# # Add github.com to known hosts
|
|
# ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
# # Set correct permissions
|
|
# chmod 600 ~/.ssh/id_rsa
|
|
|
|
# - name: Installing node deps
|
|
# run: npm install
|
|
|
|
# - name: Lint
|
|
# uses: omgimalexis/xo-action@master
|
|
# env:
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
# needs: [lint, test]
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [10.x]
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Add SSH deploy key
|
|
run: |
|
|
mkdir ~/.ssh/
|
|
# Add keys
|
|
echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY }}" > ~/.ssh/id_rsa
|
|
echo "${{ secrets.GITHUB_READONLY_DEPLOY_KEY_PUB }}" > ~/.ssh/id_rsa.pub
|
|
# Verifiy keys
|
|
ssh-keygen -l -f ~/.ssh/id_rsa.pub
|
|
# Add github.com to known hosts
|
|
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
|
|
# Set correct permissions
|
|
chmod 600 ~/.ssh/id_rsa
|
|
|
|
- name: Installing node deps
|
|
run: npm install
|
|
|
|
- name: Compile typescript to js
|
|
run: npm run build
|
|
|
|
- name: Copy graphql files to dist
|
|
run: npm run copy-schemas
|
|
|
|
# See https://github.com/apollographql/subscriptions-transport-ws/issues/433
|
|
- name: Patch subscriptions-transport-ws
|
|
run: npm run patch:subscriptions-transport-ws
|
|
|
|
- name: Pack release
|
|
run: npm pack
|
|
|
|
- name: Release to Github and s3
|
|
uses: unraid/release-action@master
|
|
env:
|
|
GITHUB_USER: ${{ secrets.GITHUB_USER }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
REPO: ${{ github.repository }}
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_ACCESS_KEY_SECRET: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
|
|
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
|