Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bbdbc3c74 | ||
|
|
6adf107cb6 | ||
|
|
10a089581f | ||
|
|
6d01f09030 | ||
|
|
f42ff3ed7c | ||
|
|
d33fa846d0 |
7 changed files with 3775 additions and 6 deletions
|
|
@ -102,6 +102,8 @@ jobs:
|
||||||
# Change into the repository directory
|
# Change into the repository directory
|
||||||
cd "$GITHUB_WORKSPACE"
|
cd "$GITHUB_WORKSPACE"
|
||||||
|
|
||||||
|
IMAGE_NAME=$(jq -r '.name' package.json)
|
||||||
|
|
||||||
IMAGE_TAG=$(git describe --tags --abbrev=0) # Use the most recent tag as the image tag
|
IMAGE_TAG=$(git describe --tags --abbrev=0) # Use the most recent tag as the image tag
|
||||||
IMAGE_FULL_NAME="containers.bridgemanaccessible.ca/k8s/${IMAGE_NAME}:${IMAGE_TAG}"
|
IMAGE_FULL_NAME="containers.bridgemanaccessible.ca/k8s/${IMAGE_NAME}:${IMAGE_TAG}"
|
||||||
|
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,7 +1,6 @@
|
||||||
# Ignore Yarn files
|
# Ignore Yarn files
|
||||||
.yarn
|
.yarn
|
||||||
.yarnrc.yml
|
.yarnrc.yml
|
||||||
yarn.lock
|
|
||||||
|
|
||||||
# Ignore dependencies
|
# Ignore dependencies
|
||||||
node_modules
|
node_modules
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ FROM node:lts
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
COPY .npmrc ./
|
|
||||||
COPY yarn.lock ./
|
COPY yarn.lock ./
|
||||||
|
|
||||||
RUN yarn install --frozen-lockfile
|
RUN yarn install --frozen-lockfile
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "harbor-helm-index",
|
"name": "harbor-helm-index",
|
||||||
"version": "1.0.0",
|
"version": "1.0.5",
|
||||||
"description": "An app to generate and server a Helm repo index.yaml for a set of OCI based Helm charts stored in Harbor",
|
"description": "An app to generate and server a Helm repo index.yaml for a set of OCI based Helm charts stored in Harbor",
|
||||||
"main": "index.js",
|
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/harbor-helm-index",
|
||||||
"repository": "https://github.com/AlanBridgeman/harbor-helm-index",
|
"author": "Bridgeman Accessible <info@bridgemanaccessible.com>",
|
||||||
"author": "Alan Bridgeman <a.bridgeman@hotmail.com>",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "gulp",
|
"build": "gulp",
|
||||||
|
|
|
||||||
BIN
src/static/img/logo_with_black_background.png
Normal file
BIN
src/static/img/logo_with_black_background.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
1
src/static/js/index.js
Normal file
1
src/static/js/index.js
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {});
|
||||||
Loading…
Add table
Add a link
Reference in a new issue