Skip to content

Commit 9218b59

Browse files
committed
refactor: update workflow names for clarity and stability
1 parent f66223c commit 9218b59

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/build-dev.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "上传应用至OSS"
1+
name: "上传应用至OSS stable"
22
on:
33
workflow_dispatch:
44

0 commit comments

Comments
 (0)