Skip to content

Commit

Permalink
Ensure native binary is available for release stats (#30649)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Oct 30, 2021
1 parent 77e1565 commit d7d1a05
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -474,13 +474,21 @@ jobs:
releaseStats:
name: Release Stats
runs-on: ubuntu-latest
needs: [publishRelease]
needs: [publishRelease, build-native-dev]
steps:
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}

- uses: actions/download-artifact@v2
with:
name: next-swc-dev-binary
path: packages/next/native

- run: cp -r packages/next/native .github/actions/next-stats-action/native

- run: ./scripts/release-stats.sh
- uses: ./.github/actions/next-stats-action
env:
Expand Down

0 comments on commit d7d1a05

Please sign in to comment.