Update LCB提取(常驻池).json #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: releaseDeckTestForPR | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PACK_NAME: "" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11.0 | |
cache: pip | |
architecture: x64 | |
- name: Setup Python Package | |
run: | | |
cd ./script/ | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
cd .. | |
- name: Run releaseDeck.py | |
run: | | |
cd ./script/ | |
python releaseDeck.py | |
cd .. | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: ./target/deck/index.json |