Skip to content

Commit 1b5f6c6

Browse files
authored
Merge pull request #217 from sprintertech/repurpose-repository
Re-purpose repository for Sprinter topology
2 parents d22cbd3 + 59a5974 commit 1b5f6c6

28 files changed

+91
-4286
lines changed

.github/workflows/publish-mainnet.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish Production Topology
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'production/**'
9+
10+
permissions: read-all
11+
12+
jobs:
13+
publish_production:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Upload production topology to DO Spaces
20+
uses: shallwefootball/upload-s3-action@master
21+
with:
22+
aws_key_id: ${{ secrets.DO_SPACES_KEY }}
23+
aws_secret_access_key: ${{ secrets.DO_SPACES_SECRET }}
24+
aws_bucket: sprinter-signing-config
25+
source_dir: './production'
26+
destination_dir: 'production'
27+
endpoint: https://ams3.digitaloceanspaces.com

.github/workflows/publish-sprinter.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish Staging Topology
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'staging/**'
9+
10+
permissions: read-all
11+
12+
jobs:
13+
publish_staging:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Upload staging topology to DO Spaces
20+
uses: shallwefootball/upload-s3-action@master
21+
with:
22+
aws_key_id: ${{ secrets.DO_SPACES_KEY }}
23+
aws_secret_access_key: ${{ secrets.DO_SPACES_SECRET }}
24+
aws_bucket: sprinter-signing-config
25+
source_dir: './staging'
26+
destination_dir: 'staging'
27+
endpoint: https://ams3.digitaloceanspaces.com

.github/workflows/publish-test.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/pull_request_template.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/update-addresses.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/update-docs.yml

Whitespace-only changes.

.github/workflows/validate-json.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.gitignore

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
1-
# Binaries for programs and plugins
2-
*.exe
3-
*.exe~
4-
*.dll
5-
*.so
6-
*.dylib
7-
8-
# Test binary, built with `go test -c`
9-
*.test
10-
11-
# Output of the go coverage tool, specifically when used with LiteIDE
12-
*.out
13-
14-
# Dependency directories (remove the comment below to include it)
15-
# vendor/
16-
1+
# IDE
172
.idea
183
.history
4+
.vscode
5+
6+
# OS
7+
.DS_Store
8+
9+
CLAUDE.md

0 commit comments

Comments
 (0)