ficsit-cli-flake/.github/workflows/release.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2021-12-03 22:20:53 +00:00
name: release
on:
push:
tags:
- v*
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
2021-12-03 22:20:53 +00:00
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-12-03 22:40:56 +00:00
- name: Download GQL schema
run: "npx graphqurl https://api.ficsit.dev/v2/query --introspect -H 'content-type: application/json' > schema.graphql"
2021-12-03 22:40:56 +00:00
2022-06-07 02:07:58 +00:00
- uses: kielabokkie/ssh-key-and-known-hosts-action@v1
with:
ssh-private-key: ${{ secrets.AUR_KEY }}
ssh-host: aur.archlinux.org
2022-06-09 04:27:26 +00:00
- name: Update UPX
run: |
mkdir ./upx
cd ./upx
wget https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
tar -xvf upx-3.96-amd64_linux.tar.xz
sudo install upx-3.96-amd64_linux/upx /usr/local/bin/upx
cd ../
rm -rf ./upx/
2021-12-03 22:20:53 +00:00
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
2024-10-10 20:20:01 +00:00
args: release --clean --debug
2021-12-03 22:20:53 +00:00
env:
2022-06-07 01:55:10 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AUR_KEY: ${{ secrets.AUR_KEY }}