on: workflow_dispatch: inputs: buildImage: description: 'Build and push Docker Image according to the environment' default: 'false' commitVersionTag: description: 'The image tag will be retrieved from the bee version command' default: 'false' beeVersion: description: 'The official bee image tag that the image will be built on. Default: last supported version' default: 'latest' beeVersionAsCommitHash: description: 'The beeVersion parameter will be interpreted as a source code commit hash that the bee base image will be built on' default: 'false' stateCommit: description: 'The images will have cheques by the traffic generation' default: 'false' push: branches: - 'master' pull_request: branches: - '**' env: BEE_IMAGE_PREFIX: 'docker.pkg.github.com/ethersphere/bee-factory' COMMIT_VERSION_TAG: ${{ github.event.inputs.commitVersionTag }} BEE_VERSION: ${{ github.event.inputs.beeVersion }} BUILD_IMAGE: ${{ github.event.inputs.beeVersionAsCommitHash }} STATE_COMMIT: ${{ github.event.inputs.stateCommit }} jobs: bee-images: name: Build and publish images runs-on: ubuntu-latest steps: - uses: actions/setup-node@v1 with: node-version: 15 registry-url: 'https://registry.npmjs.org' - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 1 - name: Auth to Github Package Docker Registry if: ${{ github.event.inputs.buildImage == 'true' && success() }} run: | echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://docker.pkg.github.com -u ${GITHUB_ACTOR} --password-stdin - name: Install npm deps if: steps.cache-npm.outputs.cache-hit != 'true' run: npm ci - name: Build images run: | BUILD_PARAMS="" if [ $BUILD_IMAGE == 'true' ] ; then BUILD_PARAMS+=" --build-base-bee --base-bee-commit-hash=$BEE_VERSION" fi if [ $STATE_COMMIT == 'true' ] ; then BUILD_PARAMS+=" --gen-traffic" fi npm run build:env -- $BUILD_PARAMS - name: Publish if it was clicked manually if: ${{ github.event.inputs.buildImage == 'true' && success() }} run: | npm run publish:env