Skip to content

Commit

Permalink
merge branch 'main' of https://github.com/Krught/beneblacklist into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Krught committed Jan 10, 2024
2 parents d72fd44 + f47eb04 commit 27c4aaf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,24 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create BeneBlacklist folder
run: |
mkdir BeneBlacklist
find . -maxdepth 1 -type f ! -name '*.github' ! -name '.gitignore' ! -name 'pkgmeta.yaml' -exec cp -r {} BeneBlacklist \;

- name: Create ZIP file
run: |
zip -r "BeneBlacklist-wrath.zip" BeneBlacklist
rm -rf BeneBlacklist

- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Todays Build"
files: |
BeneBlacklist-*.zip

0 comments on commit 27c4aaf

Please sign in to comment.