We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6367aee commit f517b86Copy full SHA for f517b86
.github/workflows/update-tags.yml
@@ -29,9 +29,12 @@ jobs:
29
sudo apt-get install -y skopeo
30
31
- name: Install gomplate
32
+ env:
33
+ BINARY: /usr/local/bin/gomplate
34
run: |
- sudo curl -o /usr/local/bin/gomplate -sSL \
35
+ sudo curl -o "${{ env.BINARY }}" -sSL \
36
https://github.com/hairyhenderson/gomplate/releases/latest/download/gomplate_linux-amd64
37
+ sudo chmod +x "${{ env.BINARY }}"
38
39
- name: Login to ${{ env.REGISTRY }}
40
0 commit comments