Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6adf107cb6 | ||
|
|
10a089581f | ||
|
|
6d01f09030 | ||
|
|
f42ff3ed7c | ||
|
|
d33fa846d0 |
7 changed files with 3775 additions and 6 deletions
|
|
@ -102,6 +102,8 @@ jobs:
|
|||
# Change into the repository directory
|
||||
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_FULL_NAME="containers.bridgemanaccessible.ca/k8s/${IMAGE_NAME}:${IMAGE_TAG}"
|
||||
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,7 +1,6 @@
|
|||
# Ignore Yarn files
|
||||
.yarn
|
||||
.yarnrc.yml
|
||||
yarn.lock
|
||||
|
||||
# Ignore dependencies
|
||||
node_modules
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ FROM node:lts
|
|||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package*.json ./
|
||||
COPY .npmrc ./
|
||||
COPY yarn.lock ./
|
||||
|
||||
RUN yarn install --frozen-lockfile
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
{
|
||||
"name": "harbor-helm-index",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.4",
|
||||
"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://github.com/AlanBridgeman/harbor-helm-index",
|
||||
"author": "Alan Bridgeman <a.bridgeman@hotmail.com>",
|
||||
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/harbor-helm-index",
|
||||
"author": "Bridgeman Accessible <info@bridgemanaccessible.com>",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"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