fdsaf #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: . |