Merge pull request #694 from iotaledger/unify-blockissuerkey #245
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Feature network deploy | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
concurrency: | |
group: feature-network-deploy-group | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
environment: feature | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: '${{ secrets.IOTALEDGER_DOCKER_USERNAME }}' | |
password: '${{ secrets.IOTALEDGER_DOCKER_PASSWORD }}' | |
- name: Publish to Docker Hub | |
uses: docker/build-push-action@v5 | |
with: | |
tags: iotaledger/iota-core:feature | |
push: true | |
build-args: | | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'tools/genesis-snapshot/go.mod' | |
cache: false | |
- name: Print Go version | |
run: go version | |
- name: Generate genesis snapshot | |
working-directory: tools/genesis-snapshot | |
run: go run -tags=rocksdb . --config feature --seed 7R1itJx5hVuo9w9hjg5cwKFmek4HMSoBDgJZN8hKGxih --filename genesis-snapshot.bin | |
- # Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
- name: Install SSH Key | |
env: | |
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$SSH_DEPLOY_KEY" > ~/.ssh/id_ed25519 | |
sudo chmod 600 ~/.ssh/id_ed25519 | |
echo ' | |
Host * | |
StrictHostKeyChecking no | |
UserKnownHostsFile=/dev/null | |
' > ~/.ssh/config | |
- name: Ansible deploy | |
env: | |
NETWORK_ENVIRONMENT: '${{ secrets.NETWORK_ENVIRONMENT }}' | |
IOTA_CORE_DOCKER_IMAGE_REPO: 'iotaledger/iota-core' | |
IOTA_CORE_DOCKER_IMAGE_TAG: 'feature' | |
run: ./deploy/ansible/run.sh feature.yml |