-
-
Notifications
You must be signed in to change notification settings - Fork 41
164 lines (157 loc) · 4.47 KB
/
release.yml
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
152
153
154
155
156
157
158
159
160
161
162
163
164
---
name: Release
on:
push:
tags:
- 'v*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
lints:
uses: ./.github/workflows/lint.yml
linux:
uses: ./.github/workflows/linux.yml
mac:
uses: ./.github/workflows/mac.yml
freebsd:
uses: ./.github/workflows/freebsd.yml
source:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/ci:fedora
needs:
- lints
- linux
- mac
- freebsd
env:
RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }}
RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }}
RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Upload source archive
run: make release/source
- name: Update manifest
run: make release/manifest
container:
runs-on: ubuntu-latest
needs:
- lints
- linux
- mac
- freebsd
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: meta
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
runtimes:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/ci:fedora
needs:
- lints
- linux
- mac
- freebsd
env:
RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }}
RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }}
RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Upload runtimes
run: make runtimes
docs:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/inko:latest
needs:
- lints
- linux
- mac
- freebsd
- container
- runtimes
env:
RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }}
RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }}
RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com
steps:
- name: Install dependencies
run: microdnf install --quiet --assumeyes rclone git tar make
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: |
docs/build
~/.local/share/inko/packages
key: docs-release
- run: git config --global --add safe.directory $PWD
- name: Deploy the documentation
run: make docs/publish DOCS_FOLDER=${{ github.ref_name }}
- name: Update the latest tag
run: >
if [[ ${{ github.ref_name }} = $(git tag -l --sort=-v:refname | head -n1) ]]
then
make docs/publish DOCS_FOLDER=latest
fi
std-docs:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/ci:idoc
env:
RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }}
RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }}
RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com
needs:
- lints
- linux
- mac
- freebsd
- container
- runtimes
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: |
~/.local/share/inko/packages
key: std-docs-release
- run: git config --global --add safe.directory $PWD
- name: Deploy the documentation
run: make std-docs/publish DOCS_FOLDER=${{ github.ref_name }}
- name: Update the latest tag
run: >
if [[ ${{ github.ref_name }} = $(git tag -l --sort=-v:refname | head -n1) ]]
then
make std-docs/publish DOCS_FOLDER=latest
fi