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