21 lines
544 B
YAML
21 lines
544 B
YAML
name: Send message
|
|
on: [push]
|
|
|
|
jobs:
|
|
default:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install -yq --no-install-suggests --no-install-recommends \
|
|
python3-pip
|
|
pip install pyzmq \
|
|
git+https://git.bitmessage.org/Bitmessage/MiNode.git@queue#egg=minode
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Install
|
|
run: npm install
|
|
- name: Run script
|
|
run: node index.js
|