diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6166199..6a63b85 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,4 +13,14 @@ jobs:
 
       - name: Build
         run: |
-          make
\ No newline at end of file
+          make
+      - name: Create GitHub Release
+        uses: ncipollo/release-action@v1
+        with:
+          artifacts: hello-world.nds
+          tag: v1.0
+          name: "Release v1.0"
+          body: "Automated release of version v1.0"
+          allowUpdates: true
+        env:
+          GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
\ No newline at end of file