25 lines
470 B
YAML
25 lines
470 B
YAML
name: export-github-repo
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.PAT}}
|
|
|
|
jobs:
|
|
web3:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: "3.x"
|
|
- name: cmd
|
|
run: |
|
|
chmod +x ./ci/export-github-repo.sh
|
|
./ci/export-github-repo.sh web3.js/ solana-web3.js
|
|
shell: bash
|