This commit is contained in:
parent
e99d76c870
commit
7fc19b7a93
1 changed files with 22 additions and 0 deletions
22
.forgejo/workflows/build-pethublocal.yaml
Normal file
22
.forgejo/workflows/build-pethublocal.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- .forgejo/workflows/build-pethublocal.yaml
|
||||
jobs:
|
||||
build-pethublocal:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: library/docker:dind
|
||||
steps:
|
||||
- run: apk add --no-cache nodejs git
|
||||
- run: git clone https://github.com/PetHubLocal/pethublocal
|
||||
- name: login to container registry
|
||||
run: echo "${{ secrets.DEPLOY_TOKEN }}" | docker login --username ${{ secrets.DEPLOY_USER }} --password-stdin git.janky.solutions
|
||||
- name: build container image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
file: Containerfile
|
||||
context: "{{defaultContext}}:pethublocal"
|
||||
tags: git.janky.solutions/jankysolutions/infra/pethublocal:latest
|
||||
platforms: linux/amd64
|
||||
push: true
|
Loading…
Reference in a new issue