Skip to content

Commit

Permalink
Migrate from Solochain Frontier to Relaychain (#166)
Browse files Browse the repository at this point in the history
closes #41
  • Loading branch information
DmitriVT authored Oct 29, 2024
2 parents 5dfd64f + f5d8bf7 commit 44324e5
Show file tree
Hide file tree
Showing 14 changed files with 1,104 additions and 750 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-release-mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Release Mainnet

on:
workflow_dispatch:
push:
branches: [ "stagenet" ]

jobs:
deploy_image:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up docker buildx
uses: docker/setup-buildx-action@v3

- name: Login to docker hub
run: docker login -u atletanetwork -p ${{ secrets.REGISTRYPASS }} docker.io

- name: Set timestamp variables
run: |
TIMESTAMP=$(date +%d%m%y-%H%M%S)
echo "TIMESTAMP: $TIMESTAMP"
- name: Build and push docker image
run: |
docker build --build-arg BUILD_FEATURES=mainnet-runtime --tag docker.io/atletanetwork/atleta-node:mainnet-${TIMESTAMP} .
docker tag docker.io/atletanetwork/atleta-node:mainnet-${TIMESTAMP} docker.io/atletanetwork/atleta-node:main-latest
docker push docker.io/atletanetwork/atleta-node:mainnet-${TIMESTAMP}
docker push docker.io/atletanetwork/atleta-node:mainnet-latest
Loading

0 comments on commit 44324e5

Please sign in to comment.