Skip to content

test deploy

test deploy #17

Workflow file for this run

name: Pipeline
on:
push:
branches:
- init-project
workflow_dispatch: # Can be triggered manually from a branch
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
with:
push: true
secrets: inherit
deploy-to-dev:
name: Deploy to dev
uses: ./.github/workflows/deploy.yml
needs: build
with:
github_environment: development
environment: dev
version: ${{ needs.build.outputs.version }}
secrets: inherit