Skip to content

Commit 6baccdf

Browse files
authored
Merge pull request #2 from eksrvb/bugfix/use-new-ci-tool
Bugfix/use new ci tool
2 parents f9c4e62 + 035ed51 commit 6baccdf

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

.github/workflows/Release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
with:
2525
path: awesome-ci
2626
- name: Create Release
27-
run: ./assets/awesome-ci-semver createRelease
27+
run: ./awesome-ci createRelease
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/branchPR.yaml

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,28 @@ name: Build PR
22

33
on:
44
push:
5-
branches-ignore:
6-
- "master"
7-
pull_request:
5+
branches-ignore:
6+
- "master"
87
paths-ignore:
9-
- 'README.md'
10-
types: [assigned, opened, synchronize, reopened, edited]
8+
- "README.md"
119

1210
jobs:
1311
build:
1412
runs-on: ubuntu-latest
1513
steps:
16-
- name: Checkout code
17-
uses: actions/checkout@v2
18-
- name: Set up Go
19-
uses: actions/setup-go@v2
20-
with:
21-
go-version: 1.15
22-
- name: Build
23-
run: go build -v
24-
- name: Upload a Build Artifact
25-
uses: actions/[email protected]
26-
with:
27-
path: awesome-ci
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
- name: Set up Go
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: 1.15
20+
- name: Build
21+
run: go build -v
22+
- name: Upload a Build Artifact
23+
uses: actions/[email protected]
24+
with:
25+
path: awesome-ci
26+
- name: Dryrun dummy Release
27+
run: ./awesome-ci createRelease -patchLevel bugfix -dry-run
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)