feat: export web3 to minnor repo (#24557)

This commit is contained in:
Yihau Chen 2022-04-22 02:51:32 +08:00 committed by GitHub
parent 3f7b8d3d2c
commit 3d0ca2d94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
name: export-github-repo
on:
push:
branches: [master]
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
jobs:
web3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: "2.x"
- name: cmd
run: |
chmod +x ./ci/export-github-repo.sh
./ci/export-github-repo.sh web3.js/ solana-web3.js
shell: bash