-
-
Notifications
You must be signed in to change notification settings - Fork 30
57 lines (54 loc) · 1.14 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
name: Release
on:
push:
tags:
- '**'
branches:
- master
permissions:
id-token: write
contents: read
packages: write
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- name: static
file: Dockerfile.static
tag: static
- name: dynamic
file: Dockerfile
tag: latest
- name: MXE
file: Dockerfile.mxe
tag: mxe
name: ${{ matrix.name }}
uses: ./.github/workflows/build.yaml
with:
file: ${{ matrix.file }}
tag: ${{ matrix.tag }}
mxe_win:
needs: [build]
strategy:
fail-fast: false
matrix:
include:
- name: Win32 Static
file: Dockerfile.win32s
tag: win32s
- name: Win32 Dynamic
file: Dockerfile.win32d
tag: win32d
- name: Win64 Static
file: Dockerfile.win64s
tag: win64s
- name: Win64 Dynamic
file: Dockerfile.win64d
tag: win64d
name: MXE ${{ matrix.name }}
uses: ./.github/workflows/build.yaml
with:
file: ${{ matrix.file }}
tag: ${{ matrix.tag }}