mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00:00
76 lines
1.9 KiB
YAML
76 lines
1.9 KiB
YAML
---
|
|
name: jfa-go
|
|
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: fetch
|
|
image: docker:git
|
|
commands:
|
|
- git fetch --tags
|
|
- name: release
|
|
image: golang:latest
|
|
environment:
|
|
GITHUB_TOKEN:
|
|
from_secret: github_token
|
|
commands:
|
|
- apt update -y
|
|
- apt install build-essential python3-pip curl software-properties-common sed upx -y
|
|
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
|
|
- apt install nodejs
|
|
- curl -sL https://git.io/goreleaser | bash
|
|
when:
|
|
event: tag
|
|
|
|
---
|
|
name: jfa-go-git
|
|
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:latest
|
|
commands:
|
|
- apt update -y
|
|
- apt install build-essential python3-pip curl software-properties-common sed upx -y
|
|
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
|
|
- apt install nodejs
|
|
- curl -sL https://git.io/goreleaser > goreleaser.sh
|
|
- chmod +x goreleaser.sh
|
|
- ./goreleaser.sh --snapshot --skip-publish --rm-dist
|
|
- wget https://builds.hrfee.pw/upload.py
|
|
- pip3 install requests
|
|
- bash -c 'python3 upload.py https://builds.hrfee.pw hrfee jfa-go ./dist/*.tar.gz'
|
|
environment:
|
|
BUILDRONE_KEY:
|
|
from_secret: BUILDRONE_KEY
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
exclude:
|
|
- pull_request
|
|
|
|
---
|
|
name: jfa-go-pr
|
|
kind: pipeline
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:latest
|
|
commands:
|
|
- apt update -y
|
|
- apt install build-essential python3-pip curl software-properties-common sed upx -y
|
|
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
|
|
- apt install nodejs
|
|
- curl -sL https://git.io/goreleaser > goreleaser.sh
|
|
- chmod +x goreleaser.sh
|
|
- ./goreleaser.sh --snapshot --skip-publish --rm-dist
|
|
|
|
trigger:
|
|
event:
|
|
include:
|
|
- pull_request
|