mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 06:55:26 +02:00
feat: Use goreleaser
This commit is contained in:
parent
45af7bee3d
commit
fc792b3274
34
.github/workflows/release-nightly.yaml
vendored
34
.github/workflows/release-nightly.yaml
vendored
@ -14,6 +14,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Check git version matches flake version
|
- name: Check git version matches flake version
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -40,25 +42,17 @@ jobs:
|
|||||||
- name: Check Flake
|
- name: Check Flake
|
||||||
run: nix flake check
|
run: nix flake check
|
||||||
|
|
||||||
- name: Build release
|
- name: Set up Go
|
||||||
run: nix build
|
uses: actions/setup-go@v5
|
||||||
|
|
||||||
- name: Copy config-lsp
|
|
||||||
run: cp result/bin/config-lsp .
|
|
||||||
|
|
||||||
- name: Build VS code extension
|
|
||||||
run: ./vs-code-extension/build-extension.sh
|
|
||||||
|
|
||||||
- name: Zip folder
|
|
||||||
shell: bash
|
|
||||||
run: cd vs-code-extension/out/ && zip -r vs-code-extension.zip . && cd ../..
|
|
||||||
|
|
||||||
- name: Upload config-lsp
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
||||||
with:
|
with:
|
||||||
files: |
|
go-version: stable
|
||||||
./config-lsp
|
|
||||||
./vs-code-extension/out/vs-code-extension.zip
|
- name: Run GoReleaser
|
||||||
|
uses: goreleaser/goreleaser-action@v6
|
||||||
|
with:
|
||||||
|
distribution: goreleaser
|
||||||
|
version: "~> v2"
|
||||||
|
args: release --clean
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GH_CONFIGLSP_TOKEN }}
|
||||||
|
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -29,3 +29,5 @@ config-lsp
|
|||||||
result
|
result
|
||||||
bin
|
bin
|
||||||
debug.log
|
debug.log
|
||||||
|
|
||||||
|
dist/
|
||||||
|
11
flake.nix
11
flake.nix
@ -12,7 +12,16 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, utils, gomod2nix }:
|
outputs = { self, nixpkgs, utils, gomod2nix }:
|
||||||
utils.lib.eachDefaultSystem (system:
|
utils.lib.eachSystem [
|
||||||
|
"x86_64-linux"
|
||||||
|
"aarch64-linux"
|
||||||
|
|
||||||
|
"x86_64-darwin"
|
||||||
|
"aarch64-darwin"
|
||||||
|
|
||||||
|
"x86_64-windows"
|
||||||
|
"aarch64-windows"
|
||||||
|
] (system:
|
||||||
let
|
let
|
||||||
version = "0.1.0"; # CI:CD-VERSION
|
version = "0.1.0"; # CI:CD-VERSION
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user