Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adisidev committed Sep 26, 2024
1 parent 6ccd77c commit 853320d
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ jobs:
sudo cmake -B build
sudo make -j${CORES} -C build
#- name: Run Tests
# run: |
# sudo make install -C build
# cd tests/
# chmod +x stress_test.sh
# bash stress_test.sh
- name: Run Tests
run: |
sudo make install -C build
cd tests/
chmod +x stress_test.sh
bash stress_test.sh
- name: Upload Artifact
uses: actions/upload-artifact@v4
Expand All @@ -89,10 +89,7 @@ jobs:
short_sha=$(git rev-parse --short HEAD)
# Create the new tag
new_tag="${current_date}-${short_sha}"
# Create the new tag
git tag -a "${new_tag}" -m "New release ${new_tag}"
git tag -a "${short_sha}" -m "New release on ${current_date}"
# Push the tag to the repository
git push origin "${new_tag}"
Expand Down

0 comments on commit 853320d

Please sign in to comment.