Compare commits
2 Commits
b10348b15a
...
8b32122191
Author | SHA1 | Date | |
---|---|---|---|
8b32122191 | |||
f341e246ff |
@ -1,16 +1,20 @@
|
||||
name: Build and Deploy docker container
|
||||
|
||||
on:
|
||||
'on':
|
||||
push:
|
||||
branches: main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# - uses: actions/setup-go@v5
|
||||
# with:
|
||||
# go-version: 'stable'
|
||||
- uses: cstuder/apprise-ga@master
|
||||
with:
|
||||
title: 'jonb.io site deployment'
|
||||
message: >-
|
||||
Push received on {{ ref }}
|
||||
Commit by {{ head_commit.author.name }}: {{ head_commit.message |
|
||||
truncate(128) }} ({{ head_commit.id[0:7] }})
|
||||
env:
|
||||
APPRISE_URL: '${{ secrets.APPRISE_URL }}'
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Yarn
|
||||
run: npm install -g yarn
|
||||
@ -18,56 +22,48 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22.x
|
||||
cache: 'yarn'
|
||||
# - name: Hash files for cache
|
||||
# uses: https://gitea.com/actions/go-hashfiles@v0.0.1
|
||||
# id: get-hash
|
||||
# with:
|
||||
# patterns: |-
|
||||
# **/yarn.lock
|
||||
# **/*.js
|
||||
# **/*.jsx
|
||||
# **/*.ts
|
||||
# **/*.tsx
|
||||
cache: yarn
|
||||
- name: Get yarn cache directory path
|
||||
id: yarn-cache-dir-path
|
||||
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/cache@v4
|
||||
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
||||
id: yarn-cache
|
||||
with:
|
||||
path: |
|
||||
${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||
${{ github.workspace }}/.next/cache
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
key: '${{ runner.os }}-yarn-${{ hashFiles(''**/yarn.lock'') }}'
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
- run: yarn
|
||||
- run: EXPORT=1 UNOPTIMIZED=1 yarn build
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
- 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
|
||||
username: '${{ gitea.actor }}'
|
||||
password: '${{ secrets.JONBIO_CI }}'
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: git.jonb.io/jblu/jonbio:latest
|
||||
cache-from: type=registry,ref=git.jonb.io/jblu/jonbio:buildcache
|
||||
cache-to: type=registry,image-manifest=true,oci-mediatypes=true,ref=git.jonb.io/jblu/jonbio:buildcache,mode=max
|
||||
-
|
||||
name: Deploy App
|
||||
tags: 'git.jonb.io/jblu/jonbio:latest'
|
||||
cache-from: 'type=registry,ref=git.jonb.io/jblu/jonbio:buildcache'
|
||||
cache-to: >-
|
||||
type=registry,image-manifest=true,oci-mediatypes=true,ref=git.jonb.io/jblu/jonbio:buildcache,mode=max
|
||||
- name: Deploy App
|
||||
uses: fjogeleit/http-request-action@v1
|
||||
with:
|
||||
url: 'http://192.168.4.11:7777/v1/update'
|
||||
method: 'GET'
|
||||
bearerToken: ${{ secrets.DEPLOYTOKEN }}
|
||||
timeout: 60000
|
||||
method: GET
|
||||
bearerToken: '${{ secrets.DEPLOYTOKEN }}'
|
||||
timeout: 60000
|
||||
- uses: cstuder/apprise-ga@master
|
||||
with:
|
||||
title: 'jonb.io site deployment'
|
||||
message: Push received on {{ ref }} Commit by {{ head_commit.author.name }}: {{ head_commit.message | truncate(128) }} ({{ head_commit.id[0:7] }}) deployed.
|
||||
env:
|
||||
APPRISE_URL: '${{ secrets.APPRISE_URL }}'
|
Loading…
x
Reference in New Issue
Block a user