-
Notifications
You must be signed in to change notification settings - Fork 10
78 lines (65 loc) · 1.97 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
name: release
on:
workflow_dispatch:
inputs:
commit:
description: "commit SHA to make release from"
required: true
default: main
version:
description: "release version, also creates a tag e.g. (0.1.0)"
required: true
permissions:
actions: read
checks: none
contents: write
deployments: none
issues: none
packages: write
pull-requests: none
repository-projects: none
security-events: none
statuses: none
jobs:
release:
runs-on: ubuntu-20.04
steps:
- name: Docker Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.inputs.commit }}
- name: Validate version
run: ./scripts/semver.sh ${{ github.event.inputs.version }}
- uses: actions/setup-go@v3
with:
go-version: "1.20.5"
- name: Go Cache Paths
id: go-cache-paths
run: |
echo "GOMODCACHE=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
- name: Go Mod Cache
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.GOMODCACHE }}
key: ${{ runner.os }}-release-go-mod-${{ hashFiles('**/go.sum') }}
- name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Coder CI"
- name: Build Image
run: make -j build/image/envbox
- name: Tag Image
run: docker tag envbox ghcr.io/coder/envbox:${{ github.event.inputs.version }}
- name: Tag and Push Commit
run: |
git tag -a ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }}
git push --tags
- name: Push Image
run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}