20 lines
496 B
YAML
20 lines
496 B
YAML
name: Build Docker Image
|
|
run-name: 🛠️🐳
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: test
|
|
run: |
|
|
wget https://github.com/stellar/stellar-cli/releases/download/v21.4.1/stellar-cli-21.4.1-x86_64-unknown-linux-gnu.tar.gz
|
|
tar xzf stellar-cli-21.4.1-x86_64-unknown-linux-gnu.tar.gz
|
|
SOROBAN_SECRET_KEY=${{ secrets.N1 }} ./stellar keys add N1
|
|
./stellar keys address N1
|
|
|
|
|