2024-09-27 05:56:54 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- .forgejo/workflows/build-freetakserver.yaml
|
|
|
|
jobs:
|
2024-10-01 16:13:35 +00:00
|
|
|
build-freetakserver:
|
2024-09-27 05:56:54 +00:00
|
|
|
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:
|
2024-09-27 06:15:13 +00:00
|
|
|
context: FreeTakServer
|
2024-09-27 05:56:54 +00:00
|
|
|
tags: git.janky.solutions/jankysolutions/infra/freetakserver:latest
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: true
|