Files
inventory/.gitea/workflows/package.yaml
Workflow config file is invalid. Please check your config file: yaml: line 4: found character that cannot start any token
Kouya Heika 5067d21b67 Add Gitea Action workflow
Signed-off-by: Kouya Heika <kouyaheika@canithesis.org>
2025-08-08 05:15:46 -05:00

17 lines
371 B
YAML

name: Inventory Packaging
jobs:
package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Processing assets
run: sh make-all.sh
- name: Packaging
run: zip -r inventory-assets.zip out/
- name: Upload
uses: actions/upload-artifact@v4
with:
name: inventory-assets.zip
path: inventory-assets.zip