diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml
index aee12ae9c6b7f52a9f6f722757edaf5e399e228a..c34eaf66ca1c6badb94a1820b955dbcfa45f62df 100644
--- a/.github/workflows/version.yml
+++ b/.github/workflows/version.yml
@@ -1,2 +1,17 @@
-- name: Write Version to File
-  uses: brettdorrans/write-version-to-file@v1.0.2
+name: Write Version to File
+on:
+  push:
+    branches:
+      - master
+
+jobs:
+  write-version:
+    runs-on: ubuntu-latest
+    name: Write Version to File
+    steps:
+    - uses: actions/checkout@master
+    - name: Update version
+      id: version
+      uses: brettdorrans/write-version-to-file@master
+      with:
+        filename: '/.VERSION'
\ No newline at end of file