Add source code bundle creation workflow
Some checks failed
Build / build-android (push) Waiting to run
Build / build-windows (push) Waiting to run
Build / build-appimage (push) Has been cancelled
Build / build-gentoo (push) Has been cancelled

This commit is contained in:
Zachary Hall 2024-10-20 14:18:00 -07:00
parent 96ae711708
commit a05f998803

View file

@ -0,0 +1,23 @@
name: Bundle
run-name: Create a bundle for the project's source code
on: [push]
jobs:
make-bundle:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
submodules: recursive
ref: main
fetch-depth: 0
- name: Upload source code
uses: actions/upload-artifact@v4
with:
name: source_archive
path: **
compression-level: 9
overwrite: true
include-hidden-files: true
if-no-files-found: error