Add environment variable NANO_MEMORY_INTENSIVE to explicitly enable/d… #503
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: Develop Branch Dockers Deploy | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
linux_job: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #v3.1.0 | |
with: | |
submodules: "recursive" | |
- name: Fetch Deps | |
run: ci/actions/linux/install_deps.sh | |
- name: Deploy Docker (ghcr.io) | |
run: ci/actions/linux/ghcr-deploy-env.sh | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
DOCKER_USER: ${{ github.repository_owner }} | |
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check if secrets.DOCKER_PASSWORD exists | |
run: echo "DOCKER_PASSWORD_EXISTS=${{ secrets.DOCKER_PASSWORD != '' }}" >> $GITHUB_ENV | |
- name: Deploy Docker (nanocurrency/nano-env) | |
if: env.DOCKER_PASSWORD_EXISTS == 'true' | |
run: ci/actions/linux/docker-deploy-env.sh | |
env: | |
DOCKER_HUB: ${{ secrets.DOCKER_HUB }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |