mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-15 17:28:28 +00:00
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
commit=$(git rev-parse HEAD)
|
|
echo "Creating release workflow for commit $commit"
|
|
gh workflow run release.yml --ref main -f commit=$commit
|
|
|