fj/.forgejo/workflows/build.yml
Nicola Zangrandi 9644640e6c
Some checks failed
/ build (push) Successful in 36s
/ publish (push) Failing after 45s
feat(ci): added release workflow
2025-02-05 11:33:01 +01:00

33 lines
942 B
YAML

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup SSH
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
- name: Checkout
run: git clone --depth 1 ssh://gitea@tehga.me:999/wasp/fj.git --branch main --single-branch /workdir
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: '/workdir/go.mod'
check-latest: true
cache-dependency-path: "/workdir/**/*.sum"
- name: Build
run: go build
working-directory: /workdir
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: fj.zip
path: /workdir/fj