mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
84 lines
3.2 KiB
YAML
84 lines
3.2 KiB
YAML
name: 'jsonrpc js client build'
|
|
# on:
|
|
# pull_request:
|
|
# push:
|
|
# tags:
|
|
# - '*'
|
|
# - '!py-*'
|
|
|
|
|
|
jobs:
|
|
pack-module:
|
|
name: 'Package @deltachat/jsonrpc-client and upload to download.delta.chat'
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Install tree
|
|
run: sudo apt install tree
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
- name: Get tag
|
|
id: tag
|
|
uses: dawidd6/action-get-tag@v1
|
|
continue-on-error: true
|
|
- name: Get Pullrequest ID
|
|
id: prepare
|
|
run: |
|
|
tag=${{ steps.tag.outputs.tag }}
|
|
if [ -z "$tag" ]; then
|
|
node -e "console.log('DELTACHAT_JSONRPC_TAR_GZ=deltachat-jsonrpc-client-' + '${{ github.ref }}'.split('/')[2] + '.tar.gz')" >> $GITHUB_ENV
|
|
else
|
|
echo "DELTACHAT_JSONRPC_TAR_GZ=deltachat-jsonrpc-client-${{ steps.tag.outputs.tag }}.tar.gz" >> $GITHUB_ENV
|
|
echo "No preview will be uploaded this time, but the $tag release"
|
|
fi
|
|
- name: System info
|
|
run: |
|
|
npm --version
|
|
node --version
|
|
echo $DELTACHAT_JSONRPC_TAR_GZ
|
|
- name: Install dependencies without running scripts
|
|
run: |
|
|
cd deltachat-jsonrpc/typescript
|
|
npm install --ignore-scripts
|
|
- name: Package
|
|
shell: bash
|
|
run: |
|
|
cd deltachat-jsonrpc/typescript
|
|
npm run build
|
|
npm pack .
|
|
ls -lah
|
|
mv $(find deltachat-jsonrpc-client-*) $DELTACHAT_JSONRPC_TAR_GZ
|
|
- name: Upload Prebuild
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: deltachat-jsonrpc-client.tgz
|
|
path: deltachat-jsonrpc/typescript/${{ env.DELTACHAT_JSONRPC_TAR_GZ }}
|
|
# Upload to download.delta.chat/node/preview/
|
|
- name: Upload deltachat-jsonrpc-client preview to download.delta.chat/node/preview/
|
|
if: ${{ ! steps.tag.outputs.tag }}
|
|
id: upload-preview
|
|
shell: bash
|
|
run: |
|
|
echo -e "${{ secrets.SSH_KEY }}" >__TEMP_INPUT_KEY_FILE
|
|
chmod 600 __TEMP_INPUT_KEY_FILE
|
|
scp -o StrictHostKeyChecking=no -v -i __TEMP_INPUT_KEY_FILE -P "22" -r deltachat-jsonrpc/typescript/$DELTACHAT_JSONRPC_TAR_GZ "${{ secrets.USERNAME }}"@"download.delta.chat":"/var/www/html/download/node/preview/"
|
|
continue-on-error: true
|
|
- name: Post links to details
|
|
if: steps.upload-preview.outcome == 'success'
|
|
run: node ./node/scripts/postLinksToDetails.js
|
|
env:
|
|
URL: preview/${{ env.DELTACHAT_JSONRPC_TAR_GZ }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
MSG_CONTEXT: Download the deltachat-jsonrpc-client.tgz
|
|
# Upload to download.delta.chat/node/
|
|
- name: Upload deltachat-jsonrpc-client build to download.delta.chat/node/
|
|
if: ${{ steps.tag.outputs.tag }}
|
|
id: upload
|
|
shell: bash
|
|
run: |
|
|
echo -e "${{ secrets.SSH_KEY }}" >__TEMP_INPUT_KEY_FILE
|
|
chmod 600 __TEMP_INPUT_KEY_FILE
|
|
scp -o StrictHostKeyChecking=no -v -i __TEMP_INPUT_KEY_FILE -P "22" -r deltachat-jsonrpc/typescript/$DELTACHAT_JSONRPC_TAR_GZ "${{ secrets.USERNAME }}"@"download.delta.chat":"/var/www/html/download/node/"
|