Skip to content

add wget pkg in shell images #49

add wget pkg in shell images

add wget pkg in shell images #49

Workflow file for this run

name: loki
on:
schedule:
- cron: "00 01 * * 1-5"
push:
branches:
- 'main'
paths:
- 'images/loki/*.yaml'
workflow_dispatch:
permissions:
contents: read
packages: write
attestations: write
id-token: write
security-events: write
actions: read
jobs:
publish:
strategy:
matrix:
version: [latest, "3.4"]
variant: [prod, shell]
include:
- version: latest
packages: ''
- version: "3.4"
packages: 'loki~3.4,logcli~3.4'
name: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || '' }}
uses: './.github/workflows/release.yaml'
with:
tag: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || '' }}
target: ${{ matrix.variant }}
packages: ${{ matrix.packages }}
secrets: inherit