Skip to content

Commit

Permalink
Create publish-example.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaaaabor authored Apr 2, 2024
1 parent 7cd4504 commit 5f81b79
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/publish-example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Gaaaabor.Akka.Discovery.Docker.DockerExample

on:
workflow_dispatch:
branches:
- feature/docker_swarm_support

env:
IMAGE_NAME: gaaaabor.akka.discovery.docker.dockerexample

jobs:
bap:
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch'

steps:
- uses: actions/checkout@v2

- name: Build image
run: docker build . --file .\examples\DockerExample\Dockerfile --tag $IMAGE_NAME

- name: Log into registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin

- name: Push image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

0 comments on commit 5f81b79

Please sign in to comment.