Compare commits
6 Commits
29c7d4af60
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
c7299a5c15
|
|||
|
a834cc97ea
|
|||
|
e3cb0502d6
|
|||
|
7b92983984
|
|||
|
c19e977763
|
|||
|
b55b51db40
|
@@ -7,10 +7,8 @@ env:
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
schedule:
|
||||
- cron: "0 12 3 * *"
|
||||
- cron: "0 12 * * 3"
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
workflow_run:
|
||||
@@ -63,7 +61,7 @@ jobs:
|
||||
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ matrix.ver }}-${{ matrix.arch }} \
|
||||
--build-arg URL=${{ matrix.url }} \
|
||||
--build-arg DEBNAME=${{ matrix.debname }} \
|
||||
--platform linux/${{ matrix.arch }} -f Dockerfile .
|
||||
--platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
|
||||
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ matrix.ver }}-${{ matrix.arch }}
|
||||
|
||||
manifest:
|
||||
|
||||
@@ -62,4 +62,4 @@ jobs:
|
||||
token: ${{ secrets.TELEGRAM_TOKEN }}
|
||||
format: markdown
|
||||
message: |
|
||||
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}`
|
||||
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ matrix.ver }}`
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# FROM debian:bookworm
|
||||
FROM debian:bookworm as BUILDER
|
||||
FROM debian:trixie as BUILDER
|
||||
ARG URL
|
||||
ARG DEBNAME
|
||||
RUN \
|
||||
@@ -9,7 +9,7 @@ RUN \
|
||||
tar xv -C /tmp -f /tmp/client.tar.gz && \
|
||||
dpkg -i "/tmp/${DEBNAME}"
|
||||
|
||||
FROM alpine:3.21
|
||||
FROM alpine:3.22
|
||||
|
||||
COPY --from=BUILDER /usr/local/bin/barracudavpn /app/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user