Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
fix(workflow): fix release workflow job permission
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkuan committed Jul 16, 2021
1 parent 06c90ff commit 140bc52
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@ const project = new ConstructLibrary({
releaseWorkflowSetupSteps: [{
name: 'Install Helm',
id: 'install_helm',
run: `curl https://baltocdn.com/helm/signing.asc | apt-key add -
apt-get install apt-transport-https --yes
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list
apt-get update -y
apt-get install helm -y`,
run: `curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh`,
}],
});

Expand Down

0 comments on commit 140bc52

Please sign in to comment.