diff options
author | Kyomotoi <[email protected]> | 2021-04-11 15:03:35 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2021-04-11 15:03:35 +0800 |
commit | cbf4900c5c3b1de65e55ce480d4b453091528e84 (patch) | |
tree | 6bde5ad2d8f6f4010cb317b2b72be36f17b503d4 /.github | |
parent | 212424da74fecbd77c9824e422ea8b028b330c9e (diff) | |
download | ATRI-cbf4900c5c3b1de65e55ce480d4b453091528e84.tar.gz ATRI-cbf4900c5c3b1de65e55ce480d4b453091528e84.tar.bz2 ATRI-cbf4900c5c3b1de65e55ce480d4b453091528e84.zip |
🚀✨⚡️🎨🐛 正式推送
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/requirements.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/requirements.yml b/.github/workflows/requirements.yml new file mode 100644 index 0000000..7c24d4c --- /dev/null +++ b/.github/workflows/requirements.yml @@ -0,0 +1,41 @@ +name: Generate Requirements + +on: + workflow_dispatch: + + push: + paths: + - poetry.lock + - pyproject.toml + - requirements.txt + +jobs: + generate: + name: Requirements + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-python@v2 + with: + python-version: 3.8 + + - uses: Gr1N/setup-poetry@v4 + with: + path: ~/.cache/pypoetry + key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} + restore-keys: ${{ runner.os }}-poetry- + + - name: Generate dependencies + run: | + poetry export -f requirements.txt -o requirements.txt + + - name: Push to repository + run: | + [[ -z "$(git status -s)" ]] && exit + git config user.name github-action + git config user.email [email protected] + git add requirements.txt + git commit -am ":pushpin: Update requirements.txt" + git push |