infra/.forgejo/workflows/build-freetakserver.yaml
Finn 277217702d
All checks were successful
/ build-pethublocal (push) Successful in 1m48s
fix context
2024-09-26 23:15:13 -07:00

21 lines
739 B
YAML

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: FreeTakServer
tags: git.janky.solutions/jankysolutions/infra/freetakserver:latest
platforms: linux/amd64
push: true