Skip to content

Commit

Permalink
Merge pull request #75 from chenmozhijin/py
Browse files Browse the repository at this point in the history
使用python重构
  • Loading branch information
chenmozhijin authored Sep 26, 2024
2 parents 24476a3 + 64d722c commit bacf164
Show file tree
Hide file tree
Showing 53 changed files with 145,113 additions and 109,956 deletions.
114 changes: 0 additions & 114 deletions .github/action/planning/action.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/action/prepare/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: '准备运行环境'
description: '准备运行环境'
runs:
using: "composite"
steps:
# 建立环境
- name: 复制文件
run: mkdir -p /opt/OpenWrt-K && cp -RT $GITHUB_WORKSPACE /opt/OpenWrt-K
shell: bash
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install -U pip
python -m pip install -r /opt/OpenWrt-K/build_helper/requirements.txt
shell: bash
7 changes: 7 additions & 0 deletions .github/action/upload/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: '上传文件'
description: '上传文件'
runs:
using: "composite"
steps:
- run: echo "没有要上传的文件"
shell: bash
Loading

0 comments on commit bacf164

Please sign in to comment.