Skip to content

fdsaf

fdsaf #3

name: Package plugin
on: [push, 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: .