Skip to content

Commit

Permalink
Optimizing workflow reusability
Browse files Browse the repository at this point in the history
  • Loading branch information
vmpay committed Jun 17, 2024
1 parent 6e7149d commit e57897e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
workflow_dispatch:

jobs:
# call-workflow:
# uses: vmpay/battle_net_dart/.github/workflows/main.yml@feature/cn_region_depr
call-workflow:
uses: vmpay/battle_net_dart/.github/workflows/main.yml@feature/cn_region_depr

post-call:
runs-on: ubuntu-latest
# needs: call-workflow
steps:
- name: Post call
run: echo "post-call run"
post-call:
runs-on: ubuntu-latest
needs: call-workflow
steps:
- name: Post call
run: echo "post-call run"

0 comments on commit e57897e

Please sign in to comment.