We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1208ac commit f1fce31Copy full SHA for f1fce31
.github/workflows/release_chart.yml
@@ -5,6 +5,7 @@ on:
5
types: [published]
6
7
permissions:
8
+ contents: read
9
packages: write
10
11
jobs:
.github/workflows/release_image.yml
@@ -19,10 +19,12 @@ jobs:
19
id: set_repo
20
run: |
21
repo=$(echo "$GITHUB_REPOSITORY" | tr '[:upper:]' '[:lower:]')
22
+ echo "Lowercase repo: $repo"
23
echo "repo=$repo" >> "$GITHUB_OUTPUT"
24
25
container-img:
26
uses: hotosm/gh-workflows/.github/workflows/image_build.yml@2.0.5
27
+ needs: prep
28
with:
29
build_target: release
30
image_name: ghcr.io/${{ needs.prep.outputs.repo }}
0 commit comments