forgejo-helm/.forgejo/actions/setup/action.yml
Michael Kriese 36140d592c
ci: add wget
- #435
2024-04-23 09:22:38 +02:00

27 lines
559 B
YAML

# action.yml
name: setup
description: 'setup system'
runs:
using: 'composite'
steps:
- shell: bash
name: create cache
run: |
mkdir -p /opt/hostedtoolcache
mkdir -p /srv/forgejo-renovate/.cache/act/tool_cache
- shell: bash
name: install deps
run: |
apt-get update -qq
apt-get -q install -qq \
ca-certificates \
curl \
gnupg \
make \
python3 \
python3-wheel \
python3-venv \
unzip \
wget \
;