Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/docs/release-changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release Changelog and Version File

This repo uses semantic-release to publish releases and keeps release notes in GitHub
Releases. It does not commit changelog or version files back to main.

## What happens on dev-release

1) semantic-release determines the next version and creates a GitHub Release.
2) The release notes serve as the changelog.

## Files updated by the PR

- GitHub Releases (release notes)

## Requirements

- No repo commits are made by the release process.
1 change: 0 additions & 1 deletion .releaserc.dev.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module.exports = {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
Expand Down
32 changes: 0 additions & 32 deletions .releaserc.prod.cjs

This file was deleted.

33 changes: 0 additions & 33 deletions .releaserc.rc.cjs

This file was deleted.

5 changes: 4 additions & 1 deletion next/Dockerfile-Openshift
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ RUN apt-get update && apt-get install -y bash

WORKDIR /next

ARG ZEVA2_VERSION
ENV ZEVA2_VERSION=$ZEVA2_VERSION

COPY . .

RUN npm install
Expand All @@ -21,4 +24,4 @@ CMD ["/bin/sh", "-c", "\
fi; \
done; \
npm run pushAndSeed && npm run start\
"]
"]
2 changes: 1 addition & 1 deletion next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next",
"version": "0.1.0",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "npm run pushSchemaToDB && next dev --turbopack",
Expand Down
3 changes: 3 additions & 0 deletions openshift/templates/next-bc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ objects:
strategy:
dockerStrategy:
dockerfilePath: ./Dockerfile-Openshift
buildArgs:
- name: ZEVA2_VERSION
value: ${VERSION}
pullSecret:
name: artifacts-pull-zeva2-artifactory-service-account-zbazfi
type: Docker
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zeva2",
"version": "0.4.0",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky",
Expand Down