Skip to content

Commit

Permalink
fixing docker publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
reubenmiller committed Dec 17, 2020
1 parent e64dc0b commit f48b217
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ No unreleased features

## Released

### v1.7.3

* Fixed publishing bug on docker images

### v1.7.2

* Fixed publishing bug on docker images
Expand Down
6 changes: 3 additions & 3 deletions scripts/publish-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ login_ghcr () {
publish_ghcr_docker () {
SOURCE_IMAGE_NAME=$1
TARGET_IMAGE_NAME=$1
VERSION=${2:-latest}
tag=${2:-latest}

docker tag ${SOURCE_IMAGE_NAME}:${VERSION} ghcr.io/${TARGET_OWNER}/${TARGET_IMAGE_NAME}:${VERSION}
docker push ghcr.io/${TARGET_OWNER}/${TARGET_IMAGE_NAME}:${VERSION}
docker tag ${SOURCE_IMAGE_NAME} ghcr.io/${TARGET_OWNER}/${TARGET_IMAGE_NAME}:${tag}
docker push ghcr.io/${TARGET_OWNER}/${TARGET_IMAGE_NAME}:${tag}
}

login_ghcr
Expand Down
2 changes: 1 addition & 1 deletion tools/PSc8y/PSc8y.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = './PSc8y.psm1'

# Version number of this module.
ModuleVersion = '1.7.2'
ModuleVersion = '1.7.3'

# Supported PSEditions
CompatiblePSEditions = @(
Expand Down

0 comments on commit f48b217

Please sign in to comment.