This commit is contained in:
parent
a974fb4da6
commit
d9d12c8394
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/build-freetakserver.yaml
Normal file
21
.forgejo/workflows/build-freetakserver.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- .forgejo/workflows/build-freetakserver.yaml
|
||||
jobs:
|
||||
build-pethublocal:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: library/docker:dind
|
||||
steps:
|
||||
- run: apk add --no-cache nodejs git
|
||||
- run: git clone -b v2.2.1 https://github.com/FreeTAKTeam/FreeTakServer
|
||||
- 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:
|
||||
context: pethublocal
|
||||
tags: git.janky.solutions/jankysolutions/infra/freetakserver:latest
|
||||
platforms: linux/amd64
|
||||
push: true
|
Loading…
Reference in a new issue