ci: switch to actions (#234)
- closes #89 Reviewed-on: https://codeberg.org/forgejo-contrib/forgejo-helm/pulls/234 Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-committed-by: Michael Kriese <michael.kriese@visualon.de>
This commit is contained in:
parent
a8c4af66f5
commit
3a1928c788
16 changed files with 456 additions and 168 deletions
26
.forgejo/actions/setup/action.yml
Normal file
26
.forgejo/actions/setup/action.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
# 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 \
|
||||
;
|
Loading…
Add table
Add a link
Reference in a new issue