forked from Green-Sky/tomato
7 lines
150 B
Bash
Executable File
7 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
|
|
|