From 63fc7460ca423491609680c5060ed5c3dcfa310f Mon Sep 17 00:00:00 2001 From: Alexander Ryndin Date: Sun, 12 Jul 2026 19:44:05 +0300 Subject: [PATCH] chore: add temporary source export workflow --- .github/workflows/export-source.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/export-source.yml diff --git a/.github/workflows/export-source.yml b/.github/workflows/export-source.yml new file mode 100644 index 0000000..a098fae --- /dev/null +++ b/.github/workflows/export-source.yml @@ -0,0 +1,23 @@ +name: Export source + +on: + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + export: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - name: Pack source + run: tar --exclude=.git -czf /tmp/luazig-source.tar.gz . + - uses: actions/upload-artifact@v4 + with: + name: luazig-source + path: /tmp/luazig-source.tar.gz + retention-days: 1