Skip to content

Commit

Permalink
Merge pull request #32 from Opetushallitus/feat/place-holder-deploy-w…
Browse files Browse the repository at this point in the history
…orkflow

Add placeholder deploy workflows
  • Loading branch information
MikkoKauhanen authored Dec 12, 2024
2 parents 493e5f7 + b197afb commit ca605ae
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Deploy DEV

on:
workflow_dispatch:
inputs:
branch:
description: Branch to deploy
required: true

jobs:
deploy_dev:
runs-on: ubuntu-latest
steps:
- name: Output
run: echo "===============> Would now start deploying AOE to DEV"
15 changes: 15 additions & 0 deletions .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Deploy PROD

on:
workflow_dispatch:
inputs:
branch:
description: Branch to deploy
required: true

jobs:
deploy_prod:
runs-on: ubuntu-latest
steps:
- name: Output
run: echo "===============> Would now start deploying AOE to PROD"
15 changes: 15 additions & 0 deletions .github/workflows/deploy_qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Deploy QA

on:
workflow_dispatch:
inputs:
branch:
description: Branch to deploy
required: true

jobs:
deploy_qa:
runs-on: ubuntu-latest
steps:
- name: Output
run: echo "===============> Would now start deploying AOE to QA"

0 comments on commit ca605ae

Please sign in to comment.