Skip to content

Commit cc7ce13

Browse files
committed
fdsaf
1 parent eb2a463 commit cc7ce13

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

.github/workflows/package-plugin.yml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,29 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v4
9-
- name: clean up trash
9+
10+
- name: Archive files
1011
run: |
11-
rm -rf .gitignore
12-
rm -rf .markdownlint.json
13-
rm -rf LICENSE
14-
- uses: actions/upload-artifact@v4
12+
sudo apt-get update
13+
sudo apt-get install zip
14+
zip -r archive.zip *
15+
16+
- name: Upload to gdrive
17+
uses: adityak74/google-drive-upload-git-action@main
1518
with:
16-
name: unreal-helper-library
17-
path: .
19+
credentials: ${{ secrets.GOOGLE_DRIVE_CREDENTIALS }}
20+
filename: "archive.zip"
21+
folderId: ${{ secrets.GOOGLE_DRIVE_FOLDER_ID }}
22+
name: "UHL_${{ github.run_id }}.zip" # optional string
23+
overwrite: "true" # optional boolean
24+
25+
# artifacts
26+
# - name: clean up trash
27+
# run: |
28+
# rm -rf .gitignore
29+
# rm -rf .markdownlint.json
30+
# rm -rf LICENSE
31+
# - uses: actions/upload-artifact@v4
32+
# with:
33+
# name: unreal-helper-library
34+
# path: .

0 commit comments

Comments
 (0)