Skip to content

Commit 76196d9

Browse files
committed
Always build main
1 parent 15763d5 commit 76196d9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build-container.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
name: Build container image
22
on:
33
push:
4-
tags:
5-
- v*
4+
branches:
5+
- main
66

77
jobs:
88
build-image:
99
runs-on: ubuntu-latest
1010
permissions:
1111
packages: write
1212
contents: read
13+
env:
14+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
1315
steps:
1416
- uses: actions/checkout@v4
1517

@@ -22,6 +24,6 @@ jobs:
2224
- name: Push image
2325
run: |
2426
IMAGE_ID=ghcr.io/gleam-lang/packages
25-
TAG="$IMAGE_ID":$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
27+
TAG="$IMAGE_ID":"$BRANCH_NAME"
2628
docker tag webapp "$TAG"
2729
docker push "$TAG"

0 commit comments

Comments
 (0)