mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 05:22:24 +08:00
40 lines
833 B
YAML
40 lines
833 B
YAML
name: Generator ROA
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
schedule:
|
|
- cron: "0 6 * * 1"
|
|
|
|
jobs:
|
|
build:
|
|
name: Generate ROA
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
path: generated
|
|
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
|
repository: NeoCloud/NeoNetwork-ROA
|
|
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
architecture: x64
|
|
|
|
- run: pip install -r .scripts/requirements.txt
|
|
|
|
- run: .scripts/generate-roa.sh
|
|
|
|
- run: git -C generated diff README.md
|
|
|
|
- run: .scripts/push-to-roa.sh
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: generated
|
|
path: generated
|