forked from devspace-sh/devspace
-
Notifications
You must be signed in to change notification settings - Fork 0
151 lines (149 loc) · 5.01 KB
/
release.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Test & Release CLI Version
on:
release:
types: [created]
push:
branches:
- main
paths:
- "Dockerfile"
- "**.go"
- "hack/coverage.bash"
- ".github/workflows/release.yaml"
pull_request:
branches:
- main
paths:
- "Dockerfile"
- "**.go"
- "hack/coverage.bash"
- ".github/workflows/release.yaml"
jobs:
release-ui:
if: startsWith(github.ref, 'refs/tags/v') == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- id: get_version
run: |
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
echo "::set-output name=release_version::$RELEASE_VERSION"
- name: Cache node modules
uses: actions/cache@v1
with:
path: ui/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/ui/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build UI
env:
VERSION: ${{ steps.get_version.outputs.release_version }}
NPM_CONFIG_GLOBALCONFIG: "dist/npm/config/npmrc"
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_DEVSPACE_REGISTRY_TOKEN }}
CI: "false"
run: ./hack/build-ui.bash
- name: Upload ui tar
uses: actions/upload-artifact@v2
with:
name: ui-tar
path: release/ui.tar.gz
release:
if: startsWith(github.ref, 'refs/tags/v') == true
needs: [ release-ui ]
runs-on: macos-11
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
- id: get_version
run: |
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
echo "::set-output name=release_version::$RELEASE_VERSION"
- name: install-go-bindata
run: go install github.com/go-bindata/go-bindata/go-bindata@latest
env:
GOPATH: /Users/runner/work/devspace/go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download ui tar
uses: actions/download-artifact@v2
with:
name: ui-tar
- name: install-upx
run: brew install upx
- name: Compile binaries
run: ./hack/build-all.bash
env:
VERSION: ${{ steps.get_version.outputs.release_version }}
GOPATH: /Users/runner/work/devspace/go
ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }}
ANALYTICS_TOKEN: ${{ secrets.ANALYTICS_TOKEN }}
ANALYTICS_ENDPOINT_EVENT: ${{ secrets.ANALYTICS_ENDPOINT_EVENT }}
ANALYTICS_ENDPOINT_USER: ${{ secrets.ANALYTICS_ENDPOINT_USER }}
- name: Publish
uses: FabianKramm/release-asset-action@v1
with:
pattern: "release/*"
github-token: ${{ secrets.GITHUB_TOKEN }}
publish-npm:
if: startsWith(github.ref, 'refs/tags/v') == true
needs: [release, release-ui]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- id: get_version
run: |
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
echo "::set-output name=release_version::$RELEASE_VERSION"
- run: |
npm ci
export NPM_TAG=$(node index.js get-tag)
npm publish --tag $NPM_TAG
working-directory: ./dist/npm
env:
RELEASE_VERSION: ${{ steps.get_version.outputs.release_version }}
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
publish-next-image:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: jerray/[email protected]
with:
tags: next
repository: devspacesh/devspace
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
publish-release-images:
if: startsWith(github.ref, 'refs/tags/v') == true
needs: [release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- id: get_version
run: |
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
echo "::set-output name=release_version::$RELEASE_VERSION"
- uses: jerray/[email protected]
with:
auto_tag: true
repository: devspacesh/devspace
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
build_args: RELEASE_VERSION=${{ steps.get_version.outputs.release_version }}
- uses: jerray/[email protected]
with:
tags: latest
repository: devspacesh/devspace
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
build_args: RELEASE_VERSION=${{ steps.get_version.outputs.release_version }}