You've already forked helm-gitea
This commit is contained in:
@ -29,31 +29,26 @@ jobs:
|
|||||||
echo "ARCH=${ARCH}" >> $GITHUB_ENV
|
echo "ARCH=${ARCH}" >> $GITHUB_ENV
|
||||||
echo "INFO: Set ARCH to '${ARCH}'"
|
echo "INFO: Set ARCH to '${ARCH}'"
|
||||||
|
|
||||||
- name: Print Architecture and Operating System
|
- name: install tools
|
||||||
run: |
|
run: |
|
||||||
echo "INFO: Set OS to '${OS}'"
|
apt update -y
|
||||||
echo "INFO: Set ARCH to '${ARCH}'"
|
apt install -y curl ca-certificates curl gnupg
|
||||||
|
# helm
|
||||||
# - name: install tools
|
curl -O https://get.helm.sh/helm-v${{ env.HELM_VERSION }}-${OS}-${ARCH}.tar.gz
|
||||||
# run: |
|
tar -xzf helm-v${{ env.HELM_VERSION }}-${OS}-${ARCH}.tar.gz
|
||||||
# apt update -y
|
mv ${OS}-${ARCH}/helm /usr/local/bin/
|
||||||
# apt install -y curl ca-certificates curl gnupg
|
rm -rf ${OS}-${ARCH} helm-v${{ env.HELM_VERSION }}-${OS}-${ARCH}.tar.gz
|
||||||
# # helm
|
helm version
|
||||||
# curl -O https://get.helm.sh/helm-v${{ env.HELM_VERSION }}-linux-amd64.tar.gz
|
# docker
|
||||||
# tar -xzf helm-v${{ env.HELM_VERSION }}-linux-amd64.tar.gz
|
install -m 0755 -d /etc/apt/keyrings
|
||||||
# mv linux-amd64/helm /usr/local/bin/
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||||
# rm -rf linux-amd64 helm-v${{ env.HELM_VERSION }}-linux-amd64.tar.gz
|
chmod a+r /etc/apt/keyrings/docker.gpg
|
||||||
# helm version
|
echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
# # docker
|
apt update -y
|
||||||
# install -m 0755 -d /etc/apt/keyrings
|
apt install -y python3 python3-pip apt-transport-https docker-ce-cli
|
||||||
# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
pip install awscli --break-system-packages
|
||||||
# chmod a+r /etc/apt/keyrings/docker.gpg
|
# jq
|
||||||
# echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
apt install -y jq
|
||||||
# apt update -y
|
|
||||||
# apt install -y python3 python3-pip apt-transport-https docker-ce-cli
|
|
||||||
# pip install awscli --break-system-packages
|
|
||||||
# # jq
|
|
||||||
# apt install -y jq
|
|
||||||
|
|
||||||
# - name: Import GPG key
|
# - name: Import GPG key
|
||||||
# id: import_gpg
|
# id: import_gpg
|
||||||
|
Reference in New Issue
Block a user