-
-
Notifications
You must be signed in to change notification settings - Fork 26
222 lines (189 loc) · 8.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# Workflow to create a release when a new tag is created
# It will generate the release on GitHub and attach the packages
name: Release
on:
push:
tags:
- '*'
jobs:
build-archive:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/touche
- name: Build archive
run: |
cd ${{ github.workspace }}/touche
npm run archive
- name: Generate checksum
run: |
sha256sum archive.tar.gz > ARCHIVE-SHA256SUM
- name: Upload archive artifact
uses: "actions/upload-artifact@v3"
with:
name: "archive.tar.gz"
path: "${{ github.workspace }}/archive.tar.gz"
- name: Upload archive checksum artifact
uses: "actions/upload-artifact@v3"
with:
name: "ARCHIVE-SHA256SUM"
path: "${{ github.workspace }}/ARCHIVE-SHA256SUM"
# deb-package:
# runs-on: ubuntu-20.04
# needs: [ build-archive ]
# env:
# target_docker_image: debian:buster-backports
# target_distribution: buster
# strategy:
# matrix:
# target_arch: ["amd64", "armhf", "arm64"]
# steps:
# - name: GitHub Environment Variables Action
# uses: FranzDiebold/[email protected]
# - name: Download archive
# uses: "actions/download-artifact@v2"
# with:
# name: archive.tar.gz
# - name: Extract archive
# run: |
# tar -xf archive.tar.gz
# - name: Patch target distribution in Debian changelog
# # touche (x.y.z) DISTRO; urgency=medium
# # -z to replace only the first occurrence
# # -i to update the file
# # ([)] ) - Group 0, find the first ") "
# # (\w+) - Group 1, find a word (DISTRO)
# # \1${{ env.target_distribution }} - Replace group 1 with the target distribution name
# run: |
# sed -zri "s/([)] )(\w+)/\1${{ env.target_distribution }}/" ${{ github.workspace }}/debian/changelog
# - name: Build Debian package
# uses: pi-top/[email protected]
# with:
# source_directory: "${{ github.workspace }}"
# artifacts_directory: "${{ github.workspace }}/artifacts"
# docker_image: ${{ env.target_docker_image }}
# distribution: ${{ env.target_distribution }}
# target_architecture: ${{ matrix.target_arch }}
# lintian_opts: "--dont-check-part nmu --no-tag-display-limit --display-info --show-overrides"
# # Package uses latest packaging syntax and Lintian opts/tags
# dpkg_buildpackage_opts: "--no-sign --no-check-builddeps --post-clean"
# - name: Upload Debian package artifacts
# uses: "actions/upload-artifact@v3"
# with:
# name: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_${{matrix.target_arch}}.deb"
# path: "${{ github.workspace }}/artifacts/${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_${{matrix.target_arch}}.deb"
# rpm-package:
# runs-on: ubuntu-20.04
# container:
# image: almalinux/almalinux:8
# steps:
# - name: Install dependencies
# run: |
# su
# dnf upgrade -y
# dnf install -y dnf-plugins-core
# dnf config-manager --set-enabled powertools
# dnf install -y epel-release
# dnf groupinstall -y "Development Tools"
# dnf install -y tar rpm-build meson nodejs npm gjs gettext libappstream-glib gobject-introspection gobject-introspection-devel gtk3-devel glib2-devel libX11-devel
# - name: GitHub Environment Variables Action
# uses: FranzDiebold/[email protected]
# - name: Checkout code
# uses: actions/checkout@v3
# with:
# path: ${{ env.GITHUB_REPOSITORY_NAME }}
# - name: Create rpmbuild directories
# run: |
# mkdir -p ~/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
# - name: Install npm packages
# run: |
# cd ${{ env.GITHUB_REPOSITORY_NAME }}
# npm install
# - name: Generate tarball
# run: |
# tar --exclude='.flatpak-builder' --exclude='.git' --exclude='build' --exclude='com.github.joseexposito.touche.yml' -czvf ~/rpmbuild/SOURCES/${{ env.GITHUB_REPOSITORY_NAME }}.tar.gz ${{ env.GITHUB_REPOSITORY_NAME }}
# - name: Build RPM package
# run: |
# rpmbuild -ba ${{ env.GITHUB_REPOSITORY_NAME }}/rpm/${{ env.GITHUB_REPOSITORY_NAME }}.spec
# - name: Upload RPM package
# uses: "actions/upload-artifact@v3"
# with:
# name: "${{ env.GITHUB_REPOSITORY_NAME }}-${{ env.GITHUB_REF_NAME }}-1.x86_64.rpm"
# path: "~/rpmbuild/RPMS/x86_64/${{ env.GITHUB_REPOSITORY_NAME }}-${{ env.GITHUB_REF_NAME }}-1.x86_64.rpm"
create-release:
runs-on: ubuntu-20.04
# needs: [ build-archive, deb-package, rpm-package ]
needs: [ build-archive ]
steps:
- name: GitHub Environment Variables Action
uses: FranzDiebold/[email protected]
- name: Download packages
uses: "actions/download-artifact@v2"
with:
path: ./
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.GITHUB_REF_NAME }}
release_name: ${{ env.GITHUB_REF_NAME }}
draft: true
prerelease: false
# - name: Upload Debian package (amd64)
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_amd64.deb/${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_amd64.deb"
# asset_name: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_amd64.deb"
# asset_content_type: application/vnd.debian.binary-package
# - name: Upload Debian package (armhf)
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_armhf.deb/${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_armhf.deb"
# asset_name: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_armhf.deb"
# asset_content_type: application/vnd.debian.binary-package
# - name: Upload Debian package (arm64)
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_arm64.deb/${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_arm64.deb"
# asset_name: "${{ env.GITHUB_REPOSITORY_NAME }}_${{ env.GITHUB_REF_NAME }}_arm64.deb"
# asset_content_type: application/vnd.debian.binary-package
# - name: Upload RPM package
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: "${{ env.GITHUB_REPOSITORY_NAME }}-${{ env.GITHUB_REF_NAME }}-1.x86_64.rpm/${{ env.GITHUB_REPOSITORY_NAME }}-${{ env.GITHUB_REF_NAME }}-1.x86_64.rpm"
# asset_name: "${{ env.GITHUB_REPOSITORY_NAME }}-${{ env.GITHUB_REF_NAME }}-1.x86_64.rpm"
# asset_content_type: application/octet-stream
- name: Upload archive
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "archive.tar.gz/archive.tar.gz"
asset_name: "archive.tar.gz"
asset_content_type: application/gzip
- name: Upload SHA256SUM
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "ARCHIVE-SHA256SUM/ARCHIVE-SHA256SUM"
asset_name: "ARCHIVE-SHA256SUM"
asset_content_type: text/plain