2 Commits
0.2.0 ... main

Author SHA1 Message Date
2ea355d9d8 fix tagging on release v2
All checks were successful
Continuous Integration / Update Development (push) Successful in 2m26s
Continuous Deployment / Update Deployment (push) Successful in 2m19s
always check your quotes
2025-12-12 19:26:05 -06:00
4d19f26f01 fix tagging in workflow
Some checks failed
Continuous Integration / Update Development (push) Successful in 2m31s
Continuous Deployment / Update Deployment (push) Failing after 1m42s
apparently git pull doesn't properly fetch new tags on upstream, so call that fetch first
2025-12-12 16:16:48 -06:00

View File

@@ -48,12 +48,12 @@ jobs:
cd /var/www/html/milsim-site-v4
version=`git log -1 --format=%H`
echo "Current Revision: $version"
echo "Updating to: ${{ github.sha }}
echo "Updating to: ${{ github.sha }}"
sudo -u nginx git reset --hard
sudo -u nginx git pull origin main
sudo -u nginx git fetch --tags
sudo -u nginx git pull origin main
new_version=`git log -1 --format=%H`
echo "Sucessfully updated to: $new_version
echo "Successfully updated to: $new_version"
- name: Update Shared Dependencies and Fix Permissions
run: |