Skip to content

Commit

Permalink
rename workflows to prefix reusable ones
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomontero committed May 7, 2024
1 parent ce85505 commit ded9bd2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ on:
- '!staging'
jobs:
call-tests:
uses: ./.github/workflows/tests.yml
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
8 changes: 4 additions & 4 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ on:
- v*
jobs:
call-tests:
uses: ./.github/workflows/tests.yml
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
call-build:
uses: ./.github/workflows/build.yml
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
needs: call-tests
call-publish-v2:
uses: ./.github/workflows/publish-v2.yml
uses: ./.github/workflows/reusable-publish-v2.yml
secrets: inherit
needs: call-build
with:
environment: production
call-publish-npm:
uses: ./.github/workflows/publish-npm.yml
uses: ./.github/workflows/reusable-publish-npm.yml
secrets: inherit
needs: call-publish-v2
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:
- 'staging'
jobs:
call-tests:
uses: ./.github/workflows/tests.yml
uses: ./.github/workflows/reusable-tests.yml
secrets: inherit
call-build:
uses: ./.github/workflows/build.yml
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
needs: call-tests
call-publish:
uses: ./.github/workflows/publish-v2.yml
uses: ./.github/workflows/reusable-publish-v2.yml
secrets: inherit
needs: call-build
with:
Expand Down

0 comments on commit ded9bd2

Please sign in to comment.