From f315fd36cf35a2713ddf98cabe43e918e5c6a653 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 25 Aug 2023 19:38:55 +0100 Subject: [PATCH] Update build.yaml --- .gitea/workflows/build.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 24f8153..f6d18f9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,10 +8,12 @@ jobs: Build: runs-on: ubuntu-latest steps: + - name: Install + run: curl -fsSL get.docker.com | bash + - name: Clone + run: git pull https://tgj.services/git/ThatGuyJack/php-fpm-docker.git . - name: Build run: | - curl -fsSL get.docker.com | bash echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login 'tgj.services/git/' -u thatguyjack --password-stdin - git pull https://tgj.services/git/ThatGuyJack/php-fpm-docker.git . docker build -t tgj.services/git/thatguyjack/php-fpm:latest - docker push tgj.services/git/thatguyjack/php-fpm:latest version: "3.8" \ No newline at end of file + docker push tgj.services/git/thatguyjack/php-fpm:latest \ No newline at end of file