fj/.forgejo/workflows/build.yml
Nicola Zangrandi 04d2d674bf
All checks were successful
/ build (push) Successful in 39s
Added initial forgejo actions config
2025-01-21 17:35:01 +01:00

24 lines
806 B
YAML

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: |
mkdir ~/.ssh
chmod 700 ~/.ssh
echo "${{ secrets.ALTAIR_SSH_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -p 999 tehga.me >> ~/.ssh/known_hosts
ssh-keyscan -p 999 doradus.tehga.me >> ~/.ssh/known_hosts
- run: git clone --depth 1 ssh://gitea@tehga.me:999/wasp/fj.git --branch main --single-branch /workdir
- uses: actions/setup-go@v5
with:
go-version-file: '/workdir/go.mod'
check-latest: true
cache-dependency-path: "/workdir/**/*.sum"
- run: go build
working-directory: /workdir
- uses: actions/upload-artifact@v3
with:
name: fj
path: /workdir/fj