Skip to content

Merge branch 'development' #11

Merge branch 'development'

Merge branch 'development' #11

Workflow file for this run

name: Project ipeline
on:
push:
branches:
- '**'
paths-ignore:
- 'LICENSE'
- 'README.md'
- 'CHANGELOG.md'
jobs:
prepare:
uses: ./.github/workflows/prepare.yml
secrets: inherit
linter:
uses: ./.github/workflows/linter.yml
needs: [prepare]
secrets: inherit
with:
RUST_VERSION: ${{ needs.prepare.outputs.RUST_VERSION }}
build:
uses: ./.github/workflows/build.yml
needs: [prepare, linter]
secrets: inherit
with:
DEPLOY_ENV: ${{ needs.prepare.outputs.DEPLOY_ENV }}
RUST_VERSION: ${{ needs.prepare.outputs.RUST_VERSION }}
IMAGE_NAME: ${{ needs.prepare.outputs.IMAGE_NAME }}
deploy:
needs: [prepare, linter, build]
uses: ./.github/workflows/deploy.yml
secrets: inherit
with:
DOCKER_IMAGE: ${{ needs.build.outputs.DOCKER_IMAGE }}