Feature network deploy #83
Workflow file for this run
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: | |
inputs: | |
snapshotUrl: | |
description: 'Custom snapshot URL:' | |
required: false | |
default: "" | |
jobs: | |
deploy: | |
environment: feature | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_BUILDKIT: 1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- 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@v2 | |
with: | |
username: '${{ secrets.IOTALEDGER_DOCKER_USERNAME }}' | |
password: '${{ secrets.IOTALEDGER_DOCKER_PASSWORD }}' | |
- name: Publish to Docker Hub | |
uses: docker/build-push-action@v3 | |
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 | |
- # 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: | |
CUSTOM_SNAPSHOT_URL: '${{ github.event.inputs.snapshotUrl }}' | |
DEFAULT_SNAPSHOT_URL: 'https://0x0.st/HywH.bin' | |
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 |