Skip to content

Commit c6777a9

Browse files
committed
ci(github): Add github build to GHCR
ref: #4 #1
1 parent d29ae2b commit c6777a9

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.cz.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
commitizen:
3+
customize:
4+
change_type_map:
5+
feature: Features
6+
fix: Fixes
7+
refactor: Refactoring
8+
test: Tests
9+
change_type_order:
10+
- BREAKING CHANGE
11+
- feat
12+
- fix
13+
- test
14+
- refactor
15+
commit_parser: ^(?P<change_type>feat|fix|test|refactor|perf|BREAKING CHANGE)(?:\((?P<scope>[^()\r\n]*)\)|\()?(?P<breaking>!)?:\s(?P<message>.*)?
16+
name: cz_customize
17+
prerelease_offset: 1
18+
tag_format: $version
19+
update_changelog_on_bump: false
20+
version: 0.0.1
21+
version_scheme: semver

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
3+
name: 'CI'
4+
5+
6+
on:
7+
push:
8+
branches:
9+
- '**'
10+
tags:
11+
- '*'
12+
13+
jobs:
14+
15+
16+
docker:
17+
name: 'Docker'
18+
uses: nofusscomputing/action_docker/.github/workflows/docker.yaml@development
19+
with:
20+
DOCKER_BUILD_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher"
21+
DOCKER_PUBLISH_REGISTRY: "docker.io"
22+
DOCKER_PUBLISH_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher"
23+
secrets:
24+
DOCKER_PUBLISH_USERNAME: ${{ secrets.NFC_DOCKERHUB_USERNAME }}
25+
DOCKER_PUBLISH_PASSWORD: ${{ secrets.NFC_DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)