Skip to content

Commit

Permalink
Merge pull request #2 from nasa/HARMONY-817
Browse files Browse the repository at this point in the history
HARMONY-817: Publish to DockerHub on merge and release
  • Loading branch information
bilts authored May 13, 2021
2 parents c6e09ca + 4eb886e commit f00509d
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
$CHANGES
15 changes: 15 additions & 0 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Draft Release

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Release Drafter
uses: release-drafter/release-drafter@v5.12.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43 changes: 43 additions & 0 deletions .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Publish to DockerHub

on:
push:
branches:
- main
tags:
- v*
env:

DOCKER_USER: bilts
DOCKER_PREFIX: harmonyservices/
GIT_PREFIX: nasa/harmony-
# Or specify a full image name not derived from the repo
# IMAGE_NAME: custom-org/custom-image-name

jobs:
push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . --file Dockerfile --tag "${GITHUB_REPOSITORY}" --label "runnumber=${GITHUB_RUN_ID}"
- name: Log into registry
run: echo "${{ secrets.DOCKERHUB }}" | docker login -u "${DOCKER_USER}" --password-stdin
- name: Push image
run: |
IMAGE_NAME=${IMAGE_NAME:-$(echo "${GITHUB_REPOSITORY}" | sed "s,^${GIT_PREFIX},${DOCKER_PREFIX},g")}
# For tagged versions, translate e.g. "refs/tags/v1.2.3" -> "1.2.3"
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# For the main branch, use "latest" as the version
[ "$VERSION" == "main" ] && VERSION=latest
IMAGE_ID="${IMAGE_NAME}:${VERSION}"
echo "Pushing ${IMAGE_ID}"
docker tag "${GITHUB_REPOSITORY}" "${IMAGE_ID}"
docker push "${IMAGE_ID}"

0 comments on commit f00509d

Please sign in to comment.