p2p: disable autoscaling and drop from bootnodes on enough peers (#4770) #1402
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
# Generate latest build and push it to dockerhub on push to develop branch. | |
# NOTE: This workflow does not include any tests, nor any dependencies, since bors guarantees | |
# that only code that passes all tests is ever pushed to develop. | |
name: push to dockerhub | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
on: | |
push: | |
branches: | |
- develop | |
tags: | |
- '*' | |
jobs: | |
dockerpush: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: push go-spacemesh | |
run: make dockerpush | |
- name: push go-bootstrapper | |
run: make dockerpush-bs |