mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix order
This commit is contained in:
parent
c1b752c91c
commit
32ca2736bb
1 changed files with 5 additions and 5 deletions
10
.github/workflows/cd.yml
vendored
10
.github/workflows/cd.yml
vendored
|
|
@ -19,6 +19,11 @@ jobs:
|
|||
- name: Build Release
|
||||
run: make build-release
|
||||
|
||||
- name: Set SHA
|
||||
id: shasum
|
||||
run: |
|
||||
echo ::set-output name=sha::"$(shasum -a 256 ./target/gitui-mac.tar.gz | awk '{printf $1}')"
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
|
|
@ -30,11 +35,6 @@ jobs:
|
|||
draft: false
|
||||
prerelease: true
|
||||
|
||||
- name: Set SHA
|
||||
id: shasum
|
||||
run: |
|
||||
echo ::set-output name=sha::"$(shasum -a 256 ./target/gitui-mac.tar.gz | awk '{printf $1}')"
|
||||
|
||||
- name: Upload Release Asset
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
|
|
|
|||
Loading…
Reference in a new issue