Compare commits
58 Commits
v0.1.4
..
6434fd0b9c
| Author | SHA1 | Date | |
|---|---|---|---|
| 6434fd0b9c | |||
| 3fa86ad23d | |||
| 190ae9f302 | |||
| 771d26ec3b | |||
| da6397dd14 | |||
| 8e20e5e354 | |||
| 533c407183 | |||
| fb76f28643 | |||
| 06262431da | |||
| e734d4077d | |||
| 9617f4280d | |||
| 3ec5605c53 | |||
| ed5232371c | |||
| 29d9cbc59c | |||
| 3eca29c2db | |||
| 8df9b7684f | |||
| 7282d0a4b6 | |||
| 0525838f4b | |||
| 958c72ee63 | |||
| fa92321176 | |||
| 458646ee8e | |||
| 9df8f6c9e1 | |||
| 7e294c8f72 | |||
| cefa79a8b8 | |||
| 1e87466ccb | |||
| e3e4e24e56 | |||
| 2be6d216d1 | |||
| 93170d0935 | |||
| 2299ac0a93 | |||
| 3ec465872e | |||
| 52e4d9c420 | |||
| 9ddf7fa928 | |||
| ab6b94cb5f | |||
| 39185f1144 | |||
| 403ab7f166 | |||
| ba06a2ea4c | |||
| 95fe5ab400 | |||
| 9ddc3db48d | |||
| 8412163370 | |||
| 86bf4d37f0 | |||
| 6cb2ac0263 | |||
| dea08d15dd | |||
| cf7623fbb9 | |||
| a51c8aa8a4 | |||
| 9fd6ec6b0b | |||
| 5b14721b14 | |||
| dcfc6e0115 | |||
| 4ad9a92306 | |||
| c5df026d04 | |||
| 16704aeeb1 | |||
| bae65994f8 | |||
| 19670e9abd | |||
| 49925c6d8f | |||
| 0ee3d06f89 | |||
| 9dceaa8119 | |||
| cbc816ad70 | |||
| 92d8e5fa09 | |||
| cd7003223a |
@@ -1,32 +0,0 @@
|
|||||||
pipeline:
|
|
||||||
build:
|
|
||||||
image: golang:1.22
|
|
||||||
commands:
|
|
||||||
- go mod vendor
|
|
||||||
- GOOS=linux GOARCH=amd64 go build -o "dist/blt-linux-amd64-${CI_COMMIT_TAG}.bin"
|
|
||||||
- GOOS=windows GOARCH=amd64 go build -o "dist/blt-windows-amd64-${CI_COMMIT_TAG}.exe"
|
|
||||||
|
|
||||||
assets:
|
|
||||||
image: node:24
|
|
||||||
commands:
|
|
||||||
- npm install
|
|
||||||
- npm run grunt build
|
|
||||||
|
|
||||||
package:
|
|
||||||
image: alpine
|
|
||||||
commands:
|
|
||||||
- tar -cvzf "dist/blt-assets-${CI_COMMIT_TAG}.tar.gz" public/
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
|
|
||||||
gitea_release:
|
|
||||||
image: plugins/gitea-release
|
|
||||||
settings:
|
|
||||||
api_key:
|
|
||||||
from_secret: gitea_api_key
|
|
||||||
base_url: https://git.metaunix.net
|
|
||||||
title: "${CI_COMMIT_TAG}"
|
|
||||||
files:
|
|
||||||
- dist/blt-*
|
|
||||||
when:
|
|
||||||
event: tag
|
|
||||||
+1
-3
@@ -60,8 +60,6 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-contrib-coffee');
|
grunt.loadNpmTasks('grunt-contrib-coffee');
|
||||||
|
|
||||||
// CLI tasks.
|
// CLI tasks.
|
||||||
grunt.registerTask('build', ['sass', 'coffee']);
|
grunt.registerTask('default', ['sass', 'coffee']);
|
||||||
grunt.registerTask('dev', ['watch']);
|
|
||||||
grunt.registerTask('default', ['build']);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user