Skip to content

Commit

Permalink
Release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
charlieJ107 committed Dec 14, 2023
1 parent f5af4f9 commit cd6324d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
id: api_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/vankyle-id-api
Expand All @@ -69,8 +69,8 @@ jobs:
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.api_meta.outputs.tags }}
labels: ${{ steps.api_meta.outputs.labels }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
id: web_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/vankyle-id-web
Expand All @@ -147,8 +147,8 @@ jobs:
with:
context: web
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.web_meta.outputs.tags }}
labels: ${{ steps.web_meta.outputs.labels }}

publish-docker-nginx:
runs-on: ubuntu-latest
Expand All @@ -163,7 +163,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
id: nginx_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/vankyle-id-nginx
Expand All @@ -173,6 +173,6 @@ jobs:
with:
context: web
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.nginx_meta.outputs.tags }}
labels: ${{ steps.nginx_meta.outputs.labels }}

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com.vankyle'
version = 'v0.0.1'
version = 'v0.0.2'

java {
sourceCompatibility = '17'
Expand Down
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vankyle-id",
"version": "0.1.0",
"version": "0.0.2",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
Expand Down

0 comments on commit cd6324d

Please sign in to comment.