Fix tag calls
Some checks failed
NodBot PE Dockerization / build (push) Failing after 0s
NodBot Production Dockerization / build (push) Failing after 1s

This commit is contained in:
Skylar Grant 2024-09-29 13:19:52 -04:00
parent 43cfb5a7fe
commit 3bdc03f553
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ jobs:
steps: steps:
- name: Pull latest from Git - name: Pull latest from Git
run: | run: |
echo "Branch: ${{ gitea.ref_name }}" echo "Branch: tags/${{ gitea.ref_name }}"
pwd pwd
whoami whoami
mkdir -p /var/lib/act_runner/ mkdir -p /var/lib/act_runner/
@ -28,7 +28,7 @@ jobs:
git checkout main git checkout main
git pull git pull
fi fi
git checkout ${{ gitea.ref_name }} git checkout tags/${{ gitea.ref_name }}
- name: Build the Docker image - name: Build the Docker image
run: | run: |
cd /var/lib/act_runner/nodbot-dev cd /var/lib/act_runner/nodbot-dev

View File

@ -15,7 +15,7 @@ jobs:
steps: steps:
- name: Pull latest from Git - name: Pull latest from Git
run: | run: |
echo "Branch: ${{ gitea.ref_name }}" echo "Branch: tags/${{ gitea.ref_name }}"
pwd pwd
whoami whoami
mkdir -p /var/lib/act_runner/ mkdir -p /var/lib/act_runner/
@ -27,7 +27,7 @@ jobs:
cd nodbot cd nodbot
git pull git pull
fi fi
git checkout ${{ gitea.ref_name }} git checkout tags/${{ gitea.ref_name }}
git pull git pull
- name: Build the Docker image - name: Build the Docker image
run: | run: |