Skip to content

Commit

Permalink
commit workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Aug 14, 2023
1 parent 386b1b5 commit 4f8253d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/flow-rc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Publish RC
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+-rc[0-9]+\+upstream*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: test step
run: echo 'RC step'
12 changes: 12 additions & 0 deletions .github/workflows/flow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Publish Prod
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+\+upstream*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: test step
run: echo 'Prod step'

0 comments on commit 4f8253d

Please sign in to comment.