24 lines
699 B
YAML
24 lines
699 B
YAML
name: SM
|
|
run-name: 🕵️
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
secret-manger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Dep Install
|
|
run: |
|
|
curl -sSL https://github.com/stellar/stellar-cli/releases/download/v21.4.1/stellar-cli-21.4.1-x86_64-unknown-linux-gnu.tar.gz | tar xz
|
|
mv ./stellar /usr/local/bin
|
|
- name: Add KeyPairs
|
|
run: |
|
|
SOROBAN_SECRET_KEY=${{ secrets.N1 }} stellar keys add N1
|
|
stellar keys address N1
|
|
SOROBAN_SECRET_KEY=${{ secrets.N2 }} stellar keys add N2
|
|
stellar keys address N2
|
|
SOROBAN_SECRET_KEY=${{ secrets.N3 }} stellar keys add N3
|
|
stellar keys address N3
|