Update .forgejo/workflows/buildpush.yaml
This commit is contained in:
parent
5489255f5c
commit
827ff7d6f3
1 changed files with 41 additions and 30 deletions
|
@ -1,35 +1,46 @@
|
||||||
|
name: Build And Test
|
||||||
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
||||||
on:
|
on:
|
||||||
push
|
push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
push_to_registry:
|
build:
|
||||||
name: Push Docker image to Docker Hub
|
runs-on: ubuntu-latest
|
||||||
runs-on: ubuntu-latest
|
steps:
|
||||||
steps:
|
- uses: https://github.com/actions/checkout@v4
|
||||||
- name: prepare node for checkout
|
- name: Use Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: https://github.com/actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '18.17'
|
||||||
|
- run: npm ci
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: --max_old_space_size=4096
|
||||||
|
|
||||||
- name: Check out the repo
|
publish:
|
||||||
uses: actions/checkout@v4
|
runs-on: cth-ubuntu-latest
|
||||||
|
needs: build
|
||||||
- name: Log in to Docker Hub
|
steps:
|
||||||
uses: https://github.com/docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
|
- name: Login to Docker Hub
|
||||||
with:
|
uses: docker/login-action@v3
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
with:
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
registry: git.jakest.us
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
registry: git.jakest.us
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
- uses: https://github.com/actions/checkout@v4
|
||||||
id: meta
|
- name: Set up Docker Buildx
|
||||||
uses: https://github.com/docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
with:
|
with:
|
||||||
images: jt/hopeasini
|
config-inline: |
|
||||||
|
[registry."git.jakest.us"] # IP from local gitea instance
|
||||||
- name: Build and push Docker image
|
http = true
|
||||||
uses: https://github.com/docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
|
insecure = true
|
||||||
with:
|
- name: Build and push Docker image
|
||||||
context: .
|
uses: https://github.com/docker/build-push-action@v5
|
||||||
file: ./Dockerfile
|
with:
|
||||||
push: true
|
context: .
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
file: ./Dockerfile
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
push: true
|
||||||
|
tags: test
|
||||||
|
- name: Stop the docker container
|
||||||
|
continue-on-error: true
|
||||||
|
run: sudo docker stop homepage
|
||||||
|
|
Loading…
Reference in a new issue