forked from Ciberusps/unreal-helper-library
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 915 Bytes
/
package-plugin.yml
File metadata and controls
34 lines (31 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Package plugin
on: workflow_dispatch
jobs:
package:
name: Package plugin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - name: Archive files
# run: |
# sudo apt-get update
# sudo apt-get install zip
# zip -r archive.zip *
# - name: Upload to gdrive
# uses: adityak74/google-drive-upload-git-action@main
# with:
# credentials: ${{ secrets.GOOGLE_DRIVE_CREDENTIALS }}
# filename: "archive.zip"
# folderId: ${{ secrets.GOOGLE_DRIVE_FOLDER_ID }}
# name: "UHL_${{ github.run_id }}.zip" # optional string
# overwrite: "true" # optional boolean
# artifacts
- name: clean up trash
run: |
rm -rf .gitignore
rm -rf .markdownlint.json
rm -rf LICENSE
- uses: actions/upload-artifact@v4
with:
name: unreal-helper-library
path: .