SeaswimmerTheFsh
437f0a3eec
All checks were successful
Upload .zip file / Upload .zip file (push) Successful in 3s
19 lines
530 B
YAML
19 lines
530 B
YAML
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:
|
|
args: zip -qq -r BetterCombatCompat.zip data pack.mcmeta pack.png
|
|
- name: Upload the .zip archive
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: BetterCombatCompat.zip
|
|
path: BetterCombatCompat.zip
|