Browse Source

Added a script to trigger the release workflow

Sam Lantinga 1 year ago
parent
commit
96fbd10de0
1 changed files with 6 additions and 0 deletions
  1. 6 0
      build-scripts/create-release.sh

+ 6 - 0
build-scripts/create-release.sh

@@ -0,0 +1,6 @@
+#!/bin/sh
+
+commit=$(git rev-parse HEAD)
+echo "Creating release workflow for commit $commit"
+gh workflow run release.yml --ref main -f commit=$commit
+