From 0ee9274c9ae4b574d89f94cfa2ae13078d28cbed Mon Sep 17 00:00:00 2001 From: FreshSoftware4 <99464939+FreshSoftware4@users.noreply.github.com> Date: Sat, 25 Jul 2026 00:22:13 -0700 Subject: [PATCH] Temporarily export governed source for local pass --- .github/workflows/native-core.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/native-core.yml b/.github/workflows/native-core.yml index 036dd47..fe792f1 100644 --- a/.github/workflows/native-core.yml +++ b/.github/workflows/native-core.yml @@ -11,6 +11,7 @@ on: - l64-symbolic/** - l64-native/** - l64-projection/** + - l64-core/** - l64-cli/** - LOCUS64_*_RAIL.athens - LOCUS64_*_CHANGE_CHAIN.athens @@ -27,6 +28,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Export governed source + run: tar --exclude=.git --exclude=target -czf /tmp/locus64-governed-source.tgz . + + - name: Upload governed source + uses: actions/upload-artifact@v4 + with: + name: locus64-governed-source-pass12-bootstrap + path: /tmp/locus64-governed-source.tgz + if-no-files-found: error + retention-days: 1 + - name: Install stable Rust uses: dtolnay/rust-toolchain@stable with: