Skip to content

Commit

Permalink
Added deploy CI workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
moonstar-x committed Nov 3, 2024
1 parent 46e7930 commit 301a84a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/callable-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy Application Stack

on:
repository_dispatch:
types:
- deploy
workflow_dispatch:
workflow_call:

jobs:
deploy:
name: Deploy Application Stack
runs-on: ubuntu-latest

steps:
- name: Placeholder
run: echo "DEPLOY"
11 changes: 11 additions & 0 deletions .github/workflows/on-push-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: On Push (Main)

on:
push:
branches:
- main

jobs:
deploy:
name: Deploy Application Stack
uses: ./.github/workflows/callable-deploy.yml

0 comments on commit 301a84a

Please sign in to comment.