-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild-binary.yml
More file actions
52 lines (49 loc) · 1.17 KB
/
build-binary.yml
File metadata and controls
52 lines (49 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
labels:
type: exec
platform: linux/amd64
steps:
- name: build-binary
image: bash
commands:
- sed -i "s#canary#$CI_COMMIT_TAG#g" version/version.go
- VERSION=$CI_COMMIT_TAG make build-binary
environment:
CODENAME:
from_secret: codename
DEV_REGISTRY:
from_secret: dev_registry
DRYCC_REGISTRY:
from_secret: drycc_registry
CONTAINER_USERNAME:
from_secret: container_username
CONTAINER_PASSWORD:
from_secret: container_password
when:
event:
- push
- tag
- name: publish-binary
image: bash
commands:
- podman run --rm
-e CI_FORGE_TYPE=github
-e CI_PIPELINE_EVENT=tag
-e CI_REPO_OWNER="$CI_REPO_OWNER"
-e CI_REPO_NAME="$CI_REPO_NAME"
-e CI_COMMIT_REF="refs/tags/$CI_COMMIT_TAG"
-e PLUGIN_API_KEY="$GITHUB_TOKEN"
-e PLUGIN_BASE_URL="https://api.github.com/"
-e PLUGIN_UPLOAD_URL="https://uploads.github.com/"
-e PLUGIN_OVERWRITE="true"
-e PLUGIN_FILES="_dist/*"
-v $(pwd):$(pwd)
-w $(pwd)
docker.io/woodpeckerci/plugin-release
environment:
GITHUB_TOKEN:
from_secret: github_token
when:
event:
- tag
depends_on:
- test-linux