-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3db75c5
commit 55dc7fc
Showing
5 changed files
with
6,189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Public ECR | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
uses: crispybaconsrl/devops-team__reusable-workflows/.github/workflows/build-public-image-on-ecr-with-vault.yml@master | ||
with: | ||
PROJECT_NAME: semantic-release | ||
secrets: | ||
vault_token: ${{ secrets.VAULT_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
plugins: | ||
- - "@semantic-release/commit-analyzer" | ||
- releaseRules: | ||
- breaking: true | ||
release: major | ||
- type: build # Changes that affect the build system or external dependencies | ||
release: patch | ||
- type: chore # Other changes that don't modify src or test files | ||
release: false | ||
- type: ci # Changes to our CI configuration files and scripts | ||
release: false | ||
- type: docs # Documentation only changes | ||
release: patch | ||
- type: feat # A new feature | ||
release: minor | ||
- type: fix # A bug fix | ||
release: patch | ||
- type: perf # A code change that improves performance | ||
release: patch | ||
- type: refactor # A code change that neither fixes a bug nor adds a feature | ||
release: false | ||
- type: revert # Reverts a previous commit | ||
release: patch | ||
- type: style # Changes that do not affect the meaning of the code | ||
# (white-space, formatting, missing semi-colons, etc) | ||
release: false | ||
- type: test # Adding missing tests or correcting existing tests | ||
release: false | ||
- "@semantic-release/release-notes-generator" | ||
- "@semantic-release/changelog" | ||
- "@semantic-release/github" | ||
- - "@semantic-release/git" | ||
- assets: | ||
- CHANGELOG.md | ||
message: |- | ||
chore(release): ${nextRelease.version} [skip ci] | ||
${nextRelease.notes} | ||
branches: | ||
- name: "develop" | ||
debug: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM node:20-alpine | ||
COPY .releaserc.yaml . | ||
COPY package*.json . | ||
RUN npm ci | ||
CMD ["npx", "semantic-release"] |
Oops, something went wrong.