add github actions deploy

This commit is contained in:
Alexey 2020-08-12 14:01:41 +03:00
parent 20af732495
commit 0da0f93bb7
3 changed files with 48 additions and 8 deletions

47
.github/workflows/nodejs.yml vendored Normal file
View File

@ -0,0 +1,47 @@
name: Node.js CI
on:
push:
branches: [ '*' ]
tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm eslint
publish:
runs-on: ubuntu-latest
needs: [build]
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build and push Docker image
uses: docker/build-push-action@v1.1.0
with:
path: dist
dockerfile: Dockerfile
repository: tornadocash/relayer
tag_with_ref: true
tags: latest
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Telegram Message Notify
uses: appleboy/telegram-action@0.0.7
with:
to: ${{ secrets.TELEGRAM_CHAT_ID }}
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
message: 🚀 Published [${{ steps.vars.outputs.repo_name }}](https://github.com/${{ github.repository }}) version [${{ steps.vars.outputs.version }}](https://www.npmjs.com/package/${{ steps.vars.outputs.repo_name }}/v/${{ steps.vars.outputs.version }}) to npm
debug: true
format: markdown

View File

@ -1,7 +0,0 @@
language: node_js
node_js:
- "11"
#install:
# - npm ci
script:
- npm run eslint

View File

@ -1,6 +1,6 @@
{
"name": "relay",
"version": "1.0.0",
"version": "3.0.1",
"description": "Relayer for Tornado.cash privacy solution. https://tornado.cash",
"main": "app.js",
"scripts": {