Skip to content

Commit 1854be4

Browse files
committed
Build container image
1 parent 057659f commit 1854be4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build-container.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build container image
2+
on:
3+
push:
4+
tags:
5+
6+
jobs:
7+
push:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
packages: write
11+
contents: read
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Build image
16+
run: docker build . --file Dockerfile --tag webapp
17+
18+
- name: Log in to registry
19+
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
20+
21+
- name: Push image
22+
run: |
23+
IMAGE_ID=ghcr.io/gleam/packages
24+
IMAGE_ID="$IMAGE_ID":$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
25+
docker tag webapp $IMAGE_ID:$VERSION
26+
docker push $IMAGE_ID:$VERSION

0 commit comments

Comments
 (0)