-
-
Notifications
You must be signed in to change notification settings - Fork 36
122 lines (101 loc) · 3.56 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
name: Extract executable binary and upload artifacts
on:
push:
# workflow_run:
# workflows:
# - "Build and Publish Docker"
# - "Unit Test"
# types:
# - "completed"
# branches:
# - "main"
# - "develop"
jobs:
on-success:
runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
strategy:
fail-fast: false
matrix:
include:
- target: "gnu"
platform: linux/amd64
- target: "gnu"
platform: linux/arm64
- target: "musl"
platform: linux/amd64
tags-suffix: "-slim"
- target: "musl"
platform: linux/arm64
tags-suffix: "-slim"
- target: "gnu-s2n"
platform: linux/amd64
tags-suffix: "-s2n"
- target: "gnu-s2n"
platform: linux/arm64
tags-suffix: "-s2n"
- target: "gnu-native-roots"
platform: linux/amd64
tags-suffix: "-native-roots"
- target: "gnu-native-roots"
platform: linux/arm64
tags-suffix: "-native-roots"
- target: "musl-native-roots"
platform: linux/amd64
tags-suffix: "-slim-native-roots"
- target: "musl-native-roots"
platform: linux/arm64
tags-suffix: "-slim-native-roots"
- target: "gnu-s2n-native-roots"
platform: linux/amd64
tags-suffix: "-s2n-native-roots"
- target: "gnu-s2n-native-roots"
platform: linux/arm64
tags-suffix: "-s2n-native-roots"
steps:
- run: "echo 'The relese triggering workflows passed'"
- name: "set env"
#if [ ${{ github.ref_name == 'develop' }} ];then BUILD_NAME="rpxy-nightly";else BUILD_NAME="rpxy";fi
run: |
if [ ${{ matrix.platform }} = "linux/amd64" ];then PLATFORM_MAP="x86_64";else PLATFORM_MAP="aarch64";fi
echo "PLATFORM_MAP=${PLATFORM_MAP}" >> $GITHUB_ENV
echo "TARGET_NAME=rpxy-nightly-${PLATFORM_MAP}-unknown-linux-${{ matrix.target }}" >> $GITHUB_ENV
- name: "docker pull and extract binary from docker image"
id: "extract-binary"
run: |
CONTAINER_ID=`docker create --platform=${{ matrix.platform }} ghcr.io/junkurihara/rust-rpxy:nightly${{ matrix.tags-suffix }}`
docker cp ${CONTAINER_ID}:/rpxy/bin/rpxy /tmp/${TARGET_NAME}
cd /tmp
tar zcvf ${TARGET_NAME}.tar.gz ${TARGET_NAME}
echo "artifact=${TARGET_NAME}" >> $GITHUB_OUTPUT
- name: "upload artifacts"
uses: actions/upload-artifact@v3
with:
name: ${{ steps.extract-binary.outputs.artifact }}
path: "/tmp/${{ steps.extract-binary.outputs.artifact }}.tar.gz"
# on-failure:
# runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# steps:
# - run: echo 'The release triggering workflows failed'
release:
runs-on: ubuntu-latest
needs: on-success
steps:
- name: checkout
uses: actions/checkout@v4
- name: download artifacts
uses: actions/download-artifact@v3
with:
path: /tmp
- name: list all
run: ls -la /tmp
# - name: release
# uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
# with:
# files: ${{ needs.on-success.outputs.artifact }}
# tag_name: ${{ github.ref }}
# draft: true
# prerelease: false
# generate_release_notes: true