Skip to content

Commit

Permalink
Refactor code to improve performance and readability
Browse files Browse the repository at this point in the history
  • Loading branch information
kressety committed Jan 19, 2024
1 parent fa52ab8 commit b2807db
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/packing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Packing

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Packing
run: python3 ./packing.py
- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GH_TOKEN }}"
automatic_release_tag: main
prerelease: false
files: |
./Modpack-Translation-Zack.zip

0 comments on commit b2807db

Please sign in to comment.