Skip to content

Commit

Permalink
github: add workflow to build images for ghcr.io
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-polo committed May 27, 2024
1 parent 89dca7a commit 6a9ef90
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/alpine-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: release docker image
on:
push:
tags:
env:
IMAGE_NAME: "gmid"
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: action/checkout@v1

- name: build the image
run: docker build -f contrib/Dockerfile -t gmid:alpine .

- name: login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: push the image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr A-Z a-z)
# strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag gmid:alpine $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

0 comments on commit 6a9ef90

Please sign in to comment.