Update .forgejo/workflows/buildpush.yaml
Some checks failed
Build And Test / build (push) Failing after 32s
Build And Test / publish (push) Has been skipped

This commit is contained in:
Jarkko Toivanen 2024-03-20 15:37:48 +02:00
parent 5489255f5c
commit 827ff7d6f3

View file

@ -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:
- name: prepare node for checkout - uses: https://github.com/actions/checkout@v4
uses: actions/setup-node@v4 - name: Use Node.js
uses: https://github.com/actions/setup-node@v3
- name: Check out the repo with:
uses: actions/checkout@v4 node-version: '18.17'
- run: npm ci
env:
NODE_OPTIONS: --max_old_space_size=4096
publish:
runs-on: cth-ubuntu-latest
needs: build
steps:
- name: Login to Docker Hub - name: Login to Docker Hub
uses: https://github.com/docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
registry: git.jakest.us registry: git.jakest.us
- uses: https://github.com/actions/checkout@v4
- name: Extract metadata (tags, labels) for Docker - name: Set up Docker Buildx
id: meta uses: https://github.com/docker/setup-buildx-action@v3
uses: https://github.com/docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with: with:
images: jt/hopeasini config-inline: |
[registry."git.jakest.us"] # IP from local gitea instance
http = true
insecure = true
- name: Build and push Docker image - name: Build and push Docker image
uses: https://github.com/docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 uses: https://github.com/docker/build-push-action@v5
with: with:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: test
labels: ${{ steps.meta.outputs.labels }} - name: Stop the docker container
continue-on-error: true
run: sudo docker stop homepage