diff --git a/.allspice/workflows/KiCad-Actions-Workflow-Demo.yml b/.allspice/workflows/KiCad-Actions-Workflow-Demo.yml
new file mode 100644
index 0000000..354ef89
--- /dev/null
+++ b/.allspice/workflows/KiCad-Actions-Workflow-Demo.yml
@@ -0,0 +1,23 @@
+name: manufacturing-outputs
+
+on: 
+  push:
+  release:
+    types: [published, edited]
+
+jobs:
+  Generate-Manufacturing-Outputs:
+    runs-on: ubuntu-latest
+    container:
+      image: allspice/kicad:8.0-releases
+    steps:
+      - name: "Check out repository code"
+        uses: actions/checkout@v4
+
+      - name: "Print variables"
+        run: |
+          echo ${{vars.SCH_FILENAME}}
+          echo ${{vars.PCB_FILENAME}}
+
+      - name: "Install python requirements"
+        run: pip install -r .allspice/utils/requirements.txt
\ No newline at end of file