Skip to content

Commit

Permalink
chore: add placeholders for new workflows (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliscott authored Oct 11, 2023
1 parent b9372e4 commit 865d1ad
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on: workflow_dispatch

name: "Release"

jobs:
release-dev:
uses: ./.github/workflows/release_dev.yml
release-prod:
uses: ./.github/workflows/release_prod.yml
10 changes: 10 additions & 0 deletions .github/workflows/release_dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on: workflow_dispatch

name: "Release dev"

jobs:
release-dev:
runs-on: ubuntu-latest
steps:
- name: hello-world
run: echo "Hello World!"
10 changes: 10 additions & 0 deletions .github/workflows/release_prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
on: workflow_dispatch

name: "Release prod"

jobs:
release-prod:
runs-on: ubuntu-latest
steps:
- name: hello-world
run: echo "Hello World!"

0 comments on commit 865d1ad

Please sign in to comment.