initial commit
This commit is contained in:
parent
405076fb17
commit
36fac5fdb5
3 changed files with 29 additions and 0 deletions
20
.forgejo/workflows/zip.yml
Normal file
20
.forgejo/workflows/zip.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
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
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
||||||
|
- name: Create the .zip archive
|
||||||
|
uses: actions/zip@v1
|
||||||
|
with:
|
||||||
|
args: zip -qq -r BetterCombatCompat.zip BetterCombatCompat
|
||||||
|
- name: Upload the .zip archive
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: BetterCombatCompat.zip
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "bettercombat:katana"
|
||||||
|
}
|
6
BetterCombatCompat/pack.mcmeta
Normal file
6
BetterCombatCompat/pack.mcmeta
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"pack": {
|
||||||
|
"pack_format": 15,
|
||||||
|
"description": "Adds BetterCombat compatibility to some mods in the GalacticFactory modpack."
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue