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 f66223c commit 9218b59Copy full SHA for 9218b59
.github/workflows/build-dev.yml
@@ -0,0 +1,21 @@
1
+name: "上传应用至OSS dev"
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
11
+ - name: Setup OSSUTIL
12
+ uses: yizhoumo/setup-ossutil@v2
13
+ with:
14
+ endpoint: ${{ secrets.OSS_ENDPOINT }}
15
+ access-key-id: ${{ secrets.OSS_ACCESS_KEY_ID }}
16
+ access-key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }}
17
+ ossutil-version: 'latest'
18
19
+ - name: Upload Assets to OSS
20
+ run: |
21
+ ossutil sync apps oss://apps-fit2cloud-com/dev/maxkb --update --delete --force
.github/workflows/build.yml
@@ -1,4 +1,4 @@
-name: "上传应用至OSS"
+name: "上传应用至OSS stable"
on:
workflow_dispatch:
0 commit comments