Skip to content

Commit fd2a013

Browse files
author
Eike vom Bauer
committed
add asset upload to pipeline
1 parent 2c52d7c commit fd2a013

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/Release.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ jobs:
1919
go-version: 1.15
2020
- name: Build
2121
run: go build -v
22-
- name: Upload a Build Artifact
23-
uses: actions/[email protected]
24-
with:
25-
path: awesome-ci
2622
- name: Create Release
27-
run: ./awesome-ci createRelease
23+
run: ./awesome-ci createRelease -uploadArtifacts awesome-ci
2824
env:
2925
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/branchPR.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ jobs:
1919
go-version: 1.15
2020
- name: Build
2121
run: go build -v
22-
- name: Upload a Build Artifact
23-
uses: actions/[email protected]
24-
with:
25-
path: awesome-ci
22+
- name: get files list
23+
run: ls -l
2624
- name: Dryrun dummy Release
2725
run: ./awesome-ci createRelease -patchLevel bugfix -dry-run
2826
env:

0 commit comments

Comments
 (0)