Skip to content

Commit

Permalink
Fix Publish Workflow (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-shashank authored Dec 6, 2024
1 parent f1d88b4 commit 0850e23
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
with:
crate: ${{ matrix.crate }}

publish-verifreg-and-eam:
publish-verifreg:
runs-on: ubuntu-latest
needs: publish-shared
steps:
Expand All @@ -70,14 +70,11 @@ jobs:
- name: Publish verifreg crate
uses: ./.github/composite-actions/publish-crate
with:
crate: [
"fil_actor_verifreg_state",
"fil_actor_eam_state"
]
crate: "fil_actor_verifreg_state"

publish-market-and-miner:
runs-on: ubuntu-latest
needs: publish-verifreg-and-eam
needs: publish-verifreg
strategy:
matrix:
crate: [
Expand All @@ -92,6 +89,17 @@ jobs:
with:
crate: ${{ matrix.crate }}

publish-eam:
runs-on: ubuntu-latest
needs: publish-dependent-on-shared
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Publish eam crate
uses: ./.github/composite-actions/publish-crate
with:
crate: "fil_actor_eam_state"

publish-reward:
runs-on: ubuntu-latest
needs: publish-market-and-miner
Expand Down

0 comments on commit 0850e23

Please sign in to comment.