Skip to content

Commit 6ff4652

Browse files
committed
debug 16
1 parent cfc3a0c commit 6ff4652

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,28 @@ on:
66
- test
77

88
jobs:
9-
tag:
10-
name: New release
9+
release:
1110
runs-on: ubuntu-latest
1211
steps:
13-
- name: Upload binaries to Github release
14-
uses: svenstaro/upload-release-action@v2
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
15+
- name: Set up Go
16+
uses: actions/setup-go@v2
17+
with:
18+
go-version: 1.17
19+
20+
- name: Build and package
21+
run: |
22+
# Your build commands here
23+
# Example: go build, npm install, etc.
24+
25+
- name: Upload Release Asset
26+
id: upload-release-asset
27+
uses: softprops/action-gh-release@v1
1528
with:
16-
repo_token: ${{ secrets.GITHUB_TOKEN }}
17-
file: ${{ GITHUB_WORKSPACE }}/wallee.zip
18-
asset_name: wallee.zip
19-
tag: ${{ github.ref }}
29+
files: wallee.zip
30+
tag_name: ${{ github.ref }}
31+
release_id: ${{ steps.create_release.outputs.id }}
32+
overwrite: true
33+
name: wallee.zip

.idea/workspace.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)