Create mkbsd.yml

This commit is contained in:
MRX7014 | Octopus 2024-09-26 12:26:14 +03:00 committed by GitHub
parent 82e50c64f0
commit 1c735fb395
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

26
.github/workflows/mkbsd.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Download and Upload MKBSD "Panels" Wallpaper
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Python Script & Create zip file
run: |
apt install sudo
sudo apt update
sudo apt install python3
pip install aiohttp
python3 mkbsd.py
zip -r downloads.zip downloads
- name: Upload Downloads Zip File to Release
uses: softprops/action-gh-release@master
with:
files: |
/home/runner/work/mkbsd/mkbsd/downloads.zip
name: MKBHD's "Panels" Wallpapers Upload
tag_name: ${{ github.run_id }}