Update .gitea/workflows/dev-docker.yml

This commit is contained in:
Skylar Grant 2024-09-29 17:23:29 +00:00
parent 7e2664083e
commit d06cac6f3d

View File

@ -1,9 +1,9 @@
name: NodBot PE Dockerization name: NodBot Production Dockerization
on: on:
push: push:
tags: tags:
- 'v*-dev*' - 'v*-prod*'
env: env:
DHUB_UNAME: ${{ secrets.DHUB_UNAME }} DHUB_UNAME: ${{ secrets.DHUB_UNAME }}
@ -15,32 +15,31 @@ 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/
cd /var/lib/act_runner/ cd /var/lib/act_runner/
if [ ! -d "nodbot" ]; then if [ ! -d "nodbot" ]; then
git clone https://git.vfsh.dev/voidf1sh/nodbot-dev git clone https://git.vfsh.dev/voidf1sh/nodbot
cd nodbot-dev cd nodbot
else else
cd nodbot-dev cd nodbot
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
docker build . --file Dockerfile --tag v0idf1sh/nodbot-dev docker build . --file Dockerfile --tag v0idf1sh/nodbot
- name: Log into Docker Hub - name: Log into Docker Hub
run: docker login -u $DHUB_UNAME -p $DHUB_PWORD run: docker login -u $DHUB_UNAME -p $DHUB_PWORD
- name: Push image to Docker Hub - name: Push image to Docker Hub
run: | run: |
cd /var/lib/act_runner/nodbot-dev cd /var/lib/act_runner/nodbot
docker push v0idf1sh/nodbot-dev docker push v0idf1sh/nodbot
- name: Restart the container - name: Restart the container
run: | run: |
cd /srv/docker/nodbot-dev cd /srv/docker/nodbot
docker-compose down docker-compose down
docker-compose up -d docker-compose up -d