File tree 4 files changed +38
-3
lines changed
4 files changed +38
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : ci
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v4
13
+ - name : Login to Docker Hub
14
+ uses : docker/login-action@v3
15
+ with :
16
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
17
+ password : ${{ secrets.DOCKERHUB_PASSWORD }}
18
+ - name : Set up Docker Buildx
19
+ uses : docker/setup-buildx-action@v3
20
+ - name : Build and push
21
+ uses : docker/build-push-action@v5
22
+ with :
23
+ context : .
24
+ file : ./Dockerfile
25
+ push : true
26
+ tags : >
27
+ fcolista/apkfile:${{ steps.vars.outputs.tag }}
28
+ fcolista/apkfile:latest
29
+
Original file line number Diff line number Diff line change 1
1
NAME = apkfile
2
- VERSION = 0.04
2
+ VERSION = 0.05
3
3
4
4
PREFIX? =/usr
5
5
DESTDIR? =$(PREFIX ) /bin
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- _ver=0.04
2
+ _ver=0.05
3
3
_apiurl=" https://pkgs.alpinelinux.org"
4
4
5
5
pattern=$1
6
6
arch=${2:- x86_64}
7
7
branch=${3:- edge}
8
8
9
9
valid_arch=" x86_64 x86 aarch64 armhf ppc64le s390x armv7 riscv64 all"
10
- valid_branch=" v3.18 v3.17 v3.16 v3.15 v3.14 v3.13 v3.12 v3.11 v3.10 v3.9 v3.8 v3.7 v3.6 v3.5 v3.4 v3.3 edge all"
10
+ valid_branch=" v3.19 v3. 18 v3.17 v3.16 v3.15 v3.14 v3.13 v3.12 v3.11 v3.10 v3.9 v3.8 v3.7 v3.6 v3.5 v3.4 v3.3 edge all"
11
11
12
12
check () {
13
13
for pkg in curl html2text; do
Original file line number Diff line number Diff line change
1
+ version : " 3.9"
2
+ services :
3
+ apkfile :
4
+ build :
5
+ context : .
6
+ dockerfile : Dockerfile
You can’t perform that action at this time.
0 commit comments