19 lines
484 B
YAML
19 lines
484 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 BetterCombatCompat
|
||
|
- name: Upload the .zip archive
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: BetterCombatCompat.zip
|