jonbio/.gitea/workflows/build.yml
Jonathan Branan 254b3da3ba
Some checks failed
Build and Deploy docker container / build (push) Failing after 3m29s
added tool cache
2024-10-20 10:08:18 -05:00

41 lines
959 B
YAML

name: Build and Deploy docker container
on:
push:
branches: main
workflow_dispatch:
concurrency:
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: git.jonb.io
username: ${{ gitea.actor }}
password: ${{ secrets.JONBIO_CI }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: git.jonb.io/jblu/jonbio:latest
-
name: Deploy App
uses: fjogeleit/http-request-action@v1
with:
url: 'http://192.168.4.11:7777/v1/update'
method: 'GET'
bearerToken: ${{ secrets.DEPLOYTOKEN }}
# preventFailureOnNoResponse: 'true'