feat(ci): added release workflow
Some checks failed
/ build (push) Successful in 36s
/ publish (push) Failing after 45s

This commit is contained in:
Nicola Zangrandi 2025-02-05 11:05:14 +01:00
parent 2bfcff6a18
commit 9644640e6c
Signed by: wasp
GPG key ID: 43C1470D890F23ED
4 changed files with 76 additions and 8 deletions

View file

@ -3,22 +3,31 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: | - name: Setup SSH
run: |
mkdir ~/.ssh mkdir ~/.ssh
chmod 700 ~/.ssh chmod 700 ~/.ssh
echo "${{ secrets.ALTAIR_SSH_KEY }}" > ~/.ssh/id_ed25519 echo "${{ secrets.ALTAIR_SSH_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -p 999 tehga.me >> ~/.ssh/known_hosts ssh-keyscan -p 999 tehga.me >> ~/.ssh/known_hosts
ssh-keyscan -p 999 doradus.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 - 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: with:
go-version-file: '/workdir/go.mod' go-version-file: '/workdir/go.mod'
check-latest: true check-latest: true
cache-dependency-path: "/workdir/**/*.sum" cache-dependency-path: "/workdir/**/*.sum"
- run: go build
- name: Build
run: go build
working-directory: /workdir working-directory: /workdir
- uses: actions/upload-artifact@v3
- name: Upload artifact
uses: actions/upload-artifact@v3
with: with:
name: fj name: fj.zip
path: /workdir/fj path: /workdir/fj

View file

@ -0,0 +1,55 @@
on:
push:
tags: 'v*'
jobs:
publish:
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: Apt install curl jq make
run: |
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq
apt-get -q install -y -qq curl jq make
- name: Build release
run: |
version="${{ github.ref_name }}"
mkdir release
go build -ldflags "-extldflags -static -s -w -X \"main.Version=${version##*v}\""
cp -a /workdir/fj release/fj
working-directory: /workdir
- name: Publish release
uses: https://code.forgejo.org/actions/forgejo-release@v2.5.1
with:
url: "https://tehga.me/forgejo/"
repo: "${{ github.repository }}"
direction: upload
tag: "${{ github.ref_name }}"
sha: "${{ github.sha }}"
release-dir: /workdir/release
token: ${{ github.token }}
override: ${{ vars.OVERRIDE || "false" }}
verbose: ${{ vars.VERBOSE || "false" }}
hide-archive-link: true
release-notes-assistant: true

View file

@ -1,7 +1,8 @@
<img src="logo.png" width="300" height="300" alt="Ferret Junior, the mascot of software project 'FJ', a command line tool to interface with the forgejo git forge. A young ferret standing on two legs, smiling, with a shirt saying 'FJ' in reddish brown letters, computers in the ground. Logo, white background, cut out, not realistic." /> <img src="logo.png" width="300" height="300" alt="Ferret Junior, the mascot of software project 'FJ', a command line tool to interface with the forgejo git forge. A young ferret standing on two legs, smiling, with a shirt saying 'FJ' in reddish brown letters, computers in the ground. Logo, white background, cut out, not realistic." />
<br> <br>
# A Forgejo CLI - "gh for Forgejo" # Ferret Junior - A Forgejo CLI
## "`gh` for Forgejo"
## Configuration ## Configuration
@ -18,4 +19,4 @@ Required variables:
- `FJ_SSH_KEY_PATH`: Path to your SSH key - `FJ_SSH_KEY_PATH`: Path to your SSH key
- `FJ_SSH_USER`: SSH user for your Forgejo instance - `FJ_SSH_USER`: SSH user for your Forgejo instance
Environment variables take precedence over values in the .env file. Environment variables take precedence over values in the .env file.

3
fj.go
View file

@ -16,6 +16,8 @@ import (
"github.com/go-git/go-git/v5/plumbing/transport/ssh" "github.com/go-git/go-git/v5/plumbing/transport/ssh"
) )
var Version = "dev"
type ForgejoRepository struct { type ForgejoRepository struct {
ID int `json:"id"` ID int `json:"id"`
Name string `json:"name"` Name string `json:"name"`
@ -34,6 +36,7 @@ const (
func showHelp() { func showHelp() {
fmt.Println("fj - A Forgejo CLI") fmt.Println("fj - A Forgejo CLI")
fmt.Println("Version:", Version)
fmt.Println("\nUsage:") fmt.Println("\nUsage:")
fmt.Println(" fj <command> [arguments]") fmt.Println(" fj <command> [arguments]")
fmt.Println("\nAvailable Commands:") fmt.Println("\nAvailable Commands:")