-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (81 loc) · 2.53 KB
/
publish.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
name: Publish
on:
pull_request:
branches:
- master
push:
branches:
- develop
jobs:
msys2-mingw:
runs-on: windows-latest
name: Publish MinGW 64
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: oprypin/find-latest-tag@v1
id: gettag
with:
repository: PerryWerneck/libhllapi
releases-only: true
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: true
install: dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool zip
- uses: robinraju/release-downloader@v1.7
with:
repository: "PerryWerneck/lib3270"
latest: true
fileName: "mingw-w64-x86_64-lib3270-5.4-0-x86_64.pkg.tar.zst"
- uses: robinraju/release-downloader@v1.7
with:
repository: "PerryWerneck/libipc3270"
latest: true
fileName: "mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst"
- name: CI-Build
run: ./win/ci-build.sh
- uses: ncipollo/release-action@v1
with:
tag: ${{ steps.gettag.outputs.tag }}
artifacts: "*-libhllapi-*.pkg.tar.zst"
allowUpdates: true
draft: false
makeLatest: true
omitBody: true
omitPrereleaseDuringUpdate: true
replacesArtifacts: true
msvc-pack:
runs-on: windows-latest
name: Publish MSVC 64
steps:
- uses: actions/checkout@v3
- uses: oprypin/find-latest-tag@v1
id: gettag
with:
repository: PerryWerneck/libhllapi
releases-only: true
- uses: ilammy/msvc-dev-cmd@v1.4.1
- uses: robinraju/release-downloader@v1.7
with:
repository: "PerryWerneck/libipc3270"
latest: true
fileName: "msvc-libipc3270-x86_64.zip"
- name: Extract libipc3270
run: 7z x msvc-libipc3270-x86_64.zip -y -oipc3270
- name: Build
run: nmake /f win\Makefile-ci.msc LIB3270_SDK_PATH=ipc3270 DESTDIR=hllapi.msvc install
- name: pack
run: 7z a msvc-hllapi-x86_64.zip .\hllapi.msvc\*
- uses: ncipollo/release-action@v1
with:
tag: ${{ steps.gettag.outputs.tag }}
artifacts: "*-hllapi-*.zip"
allowUpdates: true
draft: false
makeLatest: true
omitBody: true
omitPrereleaseDuringUpdate: true
replacesArtifacts: true