Skip to content

Commit 553a62a

Browse files
committed
add alpine apisix-base workflow
1 parent c257660 commit 553a62a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: package apisix-base rpm for el7
2+
3+
on:
4+
push:
5+
branches: [ openresty/* ]
6+
tags:
7+
- "v*"
8+
paths-ignore:
9+
- '*.md'
10+
pull_request:
11+
branches: [ master ]
12+
paths-ignore:
13+
- '*.md'
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
env:
19+
BUILD_APISIX_BASE_VERSION: 1.19.3.2.0
20+
steps:
21+
- uses: actions/checkout@v2
22+
23+
- name: install dependencies
24+
run: |
25+
sudo apt-get install -y make ruby ruby-dev rubygems build-essential
26+
27+
- name: build apisix-base apk
28+
run: |
29+
make package version=${BUILD_APISIX_BASE_VERSION} image_base=alpine image_tag=3.12 app=apisix-base type=apk

0 commit comments

Comments
 (0)