We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31cfd08 commit d7f93d3Copy full SHA for d7f93d3
.github/workflows/ci.yml
@@ -8,10 +8,24 @@ jobs:
8
upload:
9
runs-on: ubuntu-latest
10
steps:
11
+ - uses: actions/checkout@v4
12
+ with:
13
+ fetch-depth: 0
14
+
15
+ - name: Verify file existence
16
+ run: |
17
+ echo "当前工作目录:"
18
+ pwd
19
+ echo "目录内容:"
20
+ ls -la
21
+ echo "build目录内容:"
22
+ ls -la ./build/
23
24
- name: Upload MiniProgram
25
env:
26
WX_PRIVATE_KEY: ${{ secrets.WX_PRIVATE_KEY }}
27
run: |
28
mkdir -p ./build
29
echo "$WX_PRIVATE_KEY" > ./build/key
30
+ chmod +x ./build/ci.js
31
node ./build/ci.js --skip-key-write
0 commit comments