2023-11-15 20:29:15 -05:00
|
|
|
name: Upload .zip file
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Upload .zip file:
|
|
|
|
runs-on: docker
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3.6.0
|
|
|
|
- name: Create the .zip archive
|
|
|
|
uses: actions/zip@v1
|
|
|
|
with:
|
2023-11-15 20:36:59 -05:00
|
|
|
args: zip -qq -r BetterCombatCompat.zip data pack.mcmeta pack.png
|
2023-11-15 20:29:15 -05:00
|
|
|
- name: Upload the .zip archive
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: BetterCombatCompat.zip
|
2023-11-15 20:30:19 -05:00
|
|
|
path: BetterCombatCompat.zip
|