This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
fix(build): build script #2
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: build | |
on: | |
push: | |
branches: | |
- main | |
- features/** | |
- fixes/** | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
gitops-version: | |
description: 'GitOps version to use' | |
required: true | |
default: 'main' | |
type: string | |
jobs: | |
build: | |
uses: ae-utbm/gitops/.github/workflows/pnpm-image-build-publish.yml@features/initial-setup | |
with: | |
# Replace theses values to the ones according your project | |
pnpm-lint-script: 'lint' | |
node-version: '18' |