We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c516022 commit f99f711Copy full SHA for f99f711
.github/workflows/test_config_script.yml
@@ -23,6 +23,8 @@ jobs:
23
- name: Run `first_config_script.sh`
24
run: |
25
sed -i '2 a NODE_LABEL="8cpu-32ram"' first_config_script.sh
26
- sed -i '2 a GITHUB_TAG="v0.0.21"' first_config_script.sh
+ LATEST_TAG=$(git tag -l --sort=creatordate | tail -n1)
27
+ echo "LATEST_TAG=$LATEST_TAG"
28
+ sed -i '2 a GITHUB_TAG="$LATEST_TAG"' first_config_script.sh
29
sed -i '/^reboot$/d' ./first_config_script.sh
30
sudo -E bash first_config_script.sh
0 commit comments