Skip to content

Commit

Permalink
add staging workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomontero committed May 6, 2024
1 parent 4ec2e1b commit 1f7c84e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Tests on Branch
on:
push:
branches:
- staging
jobs:
#call-tests:
# uses: ./.github/workflows/tests.yml
# secrets: inherit
call-build:
uses: ./.github/workflows/build.yml
secrets: inherit
needs: call-tests
call-publish:
uses: ./.github/workflows/publish-v2.yml
secrets: inherit
needs: call-build
with:
environment: staging

0 comments on commit 1f7c84e

Please sign in to comment.