mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-03 21:43:08 +00:00
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
buildImage:
|
|
description: 'Build 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: '0.5.3'
|
|
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 }}
|
|
|
|
jobs:
|
|
bee-images:
|
|
name: Build and publish images
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
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: |
|
|
npm run build:env
|
|
- name: Publish if it was clicked manually
|
|
if: ${{ github.event.inputs.buildImage == 'true' && success() }}
|
|
run: |
|
|
npm run publish:env
|