Skip to content

Commit

Permalink
ci: fix lowercase docker publish
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Jan 31, 2023
1 parent 4e15807 commit 2423dd2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
id: package-version
run: echo ::set-output name=version::$(jq -r .version package.json)
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/${{ github.repository }}:${{ steps.package-version.outputs.version }}
run: docker build . --file Dockerfile --tag ghcr.io/scathachgrip/reddit-proxy:${{ steps.package-version.outputs.version }}
- name: Tag the Docker image
run: docker tag ghcr.io/${{ github.repository }}:${{ steps.package-version.outputs.version }} ghcr.io/${{ github.repository }}:latest
run: docker tag ghcr.io/scathachgrip/reddit-proxy:${{ steps.package-version.outputs.version }} ghcr.io/scathachgrip/reddit-proxy:latest
- name: Push the Docker image
run: docker push ghcr.io/${{ github.repository }} --all-tags
run: docker push ghcr.io/scathachgrip/reddit-proxy --all-tags


8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cabul-rest",
"name": "reddit-proxy",
"version": "1.0.1",
"description": "Proxy API for reddit",
"main": "build/index.js",
Expand All @@ -22,7 +22,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinkaroid/cabul.git"
"url": "git+https://github.com/scathachgrip/reddit-proxy.git"
},
"keywords": [
"reddit",
Expand All @@ -32,7 +32,7 @@
"author": "sinkaroid",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinkaroid/cabul/issues"
"url": "https://github.com/scathachgrip/reddit-proxy/issues"
},
"homepage": "https://github.com/sinkaroid/cabul#readme"
"homepage": "https://github.com/scathachgrip/reddit-proxy#readme"
}

0 comments on commit 2423dd2

Please sign in to comment.