mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-12-17 04:24:18 +08:00
7 lines
150 B
Bash
7 lines
150 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
commit=$(git rev-parse HEAD)
|
||
|
|
echo "Creating release workflow for commit $commit"
|
||
|
|
gh workflow run release.yml --ref main -f commit=$commit
|
||
|
|
|